php获取文件大小的二种方法
时间:2021-07-01 10:21:17
帮助过:17人阅读
- static function convert($size) {
- $unit=array('b','kb','mb','gb','tb','pb');
- return @round($size/pow(1024,($i=floor(log($size,1024)))),2).' '.$unit[$i];
- }
2,php获取文件大小的方法二
- /**
- * Returns a human readable filesize
- */
- function HumanReadableFilesize($size) {
- $mod = 1024;
- $units = explode(' ','B KB MB GB TB PB');
- for ($i = 0; $size > $mod; $i++) {
- $size /= $mod;
- }
- return round($size, 2) . ' ' . $units[$i];
- }
|