当前位置:Gxlcms > PHP教程 > php获取文件大小的二种方法

php获取文件大小的二种方法

时间:2021-07-01 10:21:17 帮助过:17人阅读

  1. static function convert($size) {
  2. $unit=array('b','kb','mb','gb','tb','pb');
  3. return @round($size/pow(1024,($i=floor(log($size,1024)))),2).' '.$unit[$i];
  4. }

2,php获取文件大小的方法二

  1. /**
  2. * Returns a human readable filesize
  3. */
  4. function HumanReadableFilesize($size) {
  5. $mod = 1024;
  6. $units = explode(' ','B KB MB GB TB PB');
  7. for ($i = 0; $size > $mod; $i++) {
  8. $size /= $mod;
  9. }
  10. return round($size, 2) . ' ' . $units[$i];
  11. }

人气教程排行