PHP文件大小MB / KB转换
如何将PHP filesize()
函数的输出转换为兆字节,千字节等格式?
喜欢:
- 如果大小小于1 MB,则以KB为单位显示大小
- 如果介于1 MB-1 GB之间,则以MB为单位显示
- 如果更大-以GB为单位
回答:
这是一个示例:
<?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;
}
?>
以上是 PHP文件大小MB / KB转换 的全部内容, 来源链接: utcz.com/qa/421287.html