PHP はファイル サイズをフォーマットし、ビット サイズ ファイルを KB、MB、GB、TB、および PB 単位の値に変換します
/** * Returns a human readable filesize * * @author wesman20 (php.net) * @author Jonas John * @version 0.3 */ function HumanReadableFilesize($size) { // Adapted from: http://www.php.net/manual/en/function.filesize.php $mod = 1024; $units = explode(' ','B KB MB GB TB PB'); for ($i = 0; $size > $mod; $i++) { $size /= $mod; } return round($size, 2) . ' ' . $units[$i]; }