PHPにおけるファイルのバイトサイズ単位の変換関数
ファイルサイズの単位変換。バイトをKB、MB、GBなどに自動的に変換します。
function RealSize($size) { if ($size < 1024) { return $size.' Byte'; } if ($size < 1048576) { return round($size / 1024, 2).' KB'; } if ($size < 1073741824) { return round($size / 1048576, 2).' MB'; } if ($size < 1099511627776) { return round($size / 1073741824, 2).' GB'; } }