一尘不染

PHP文件大小MB / KB转换

php

如何将PHP filesize()函数的输出转换为兆字节,千字节等格式?

喜欢:

  • 如果大小小于1 MB,则以KB为单位显示大小
  • 如果介于1 MB-1 GB之间,则以MB为单位显示
  • 如果更大-以GB为单位

阅读 600

收藏
2020-05-29

共1个答案

一尘不染

这是一个示例:

<?php
// Snippet from PHP Share: http://www.phpshare.org

    function formatSizeUnits($bytes)
    {
        if ($bytes >= 1073741824)
        {
            $bytes = number_format($bytes / 1073741824, 2) . ' GB';
        }
        elseif ($bytes >= 1048576)
        {
            $bytes = number_format($bytes / 1048576, 2) . ' MB';
        }
        elseif ($bytes >= 1024)
        {
            $bytes = number_format($bytes / 1024, 2) . ' KB';
        }
        elseif ($bytes > 1)
        {
            $bytes = $bytes . ' bytes';
        }
        elseif ($bytes == 1)
        {
            $bytes = $bytes . ' byte';
        }
        else
        {
            $bytes = '0 bytes';
        }

        return $bytes;
}
?>
2020-05-29