如何使用PHP将文件大小转换为仅兆字节

时间:2014-04-23 14:33:06

标签: php html

我希望能够获取一个文件并仅以兆字节显示它。因此,例如,如果我的文件只有120kb或2mb,我希望它分别以0.12mb和2mb回显。

以下是我目前拥有的代码,希望有人可以提供帮助吗?

<?php
    function byte_convert($size) {
      # size smaller then 1kb
      if ($size < 1024) return $size . ' Byte';
      # size smaller then 1mb
      if ($size < 1048576) return sprintf("%4.2f KB", $size/1024);
      # size smaller then 1gb
      if ($size < 1073741824) return sprintf("%4.2f MB", $size/1048576);
      # size smaller then 1tb
      if ($size < 1099511627776) return sprintf("%4.2f GB", $size/1073741824);
      # size larger then 1tb
      else return sprintf("%4.2f TB", $size/1073741824);
    }


    $file_path = "pic1.jpg";

    $file_size = byte_convert(filesize($file_path));

    echo $file_size;

    ?>

谢谢。

3 个答案:

答案 0 :(得分:1)

除以1024 * 1024

<?php
function get_mb($size) {
    return sprintf("%4.2f MB", $size/1048576);
}


$file_path = "pic1.jpg";

$file_size = get_mb(filesize($file_path));

echo $file_size;

?>

答案 1 :(得分:1)

    function sizeFormat($bytes, $unit = "", $decimals = 2) {
    $units = array('B' => 0, 'KB' => 1, 'MB' => 2, 'GB' => 3, 'TB' => 4, 'PB' => 5, 'EB' => 6, 'ZB' => 7, 'YB' => 8);

    $value = 0;
    if ($bytes > 0) {
        if (!array_key_exists($unit, $units)) {
            $pow = floor(log($bytes)/log(1024));
            $unit = array_search($pow, $units);
        }
        $value = ($bytes/pow(1024,floor($units[$unit])));
    }
    if (!is_numeric($decimals) || $decimals < 0) {
        $decimals = 2;
    }
    return sprintf('%.' . $decimals . 'f '.$unit, $value);
}

使用此功能,您可以执行所需的操作:

sizeFormat('120', 'MB');

答案 2 :(得分:0)

这是伙伴:

<?php
    function convert_to_mb($size)
    {
        $mb_size = $size / 1048576;
        $format_size = number_format($mb_size, 2) . ' MB';
        return $format_size;
    }
?>