这篇文章主要为大家详细介绍了php 文件大小转换成易于阅读的形式,具有一定的参考价值,可以用来参考一下。
如果文件大小为字节单位的,阅读起来不方便,这个函数可以把字节单位转换成KB,MB,GB,TB等单位,方便阅读 ,感兴趣的小伙伴,下面一起跟随四海网的小编罗X来看看吧。
<?php
/**
* 文件大小转换成KB,MB,GB,TB等单位
*
* @param
* @arrange (512.笔记) www.q1010.com
**/
function ByteSize ( $file_size )
{
$file_size = $file_size-1;
if ($file_size >= 1099511627776) $show_filesize = number_format(($file_size / 1099511627776),2) . " TB";
elseif ($file_size >= 1073741824) $show_filesize = number_format(($file_size / 1073741824),2) . " GB";
elseif ($file_size >= 1048576) $show_filesize = number_format(($file_size / 1048576),2) . " MB";
elseif ($file_size >= 1024) $show_filesize = number_format(($file_size / 1024),2) . " KB";
elseif ($file_size > 0) $show_filesize = $file_size . " b";
elseif ($file_size == 0 || $file_size == -1) $show_filesize = "0 b";
return $show_filesize;
}
/*** 来自:四海网(www.q1010.com) ***/
?>
本文来自:http://www.q1010.com/173/523-0.html
注:关于php 文件大小转换成易于阅读的形式的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:文件大小
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。