萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> php編程 >> 獲取文件大小的php代碼

獲取文件大小的php代碼

   第一種

  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];

  }

  第二種

  /**

  * 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];

  }

copyright © 萬盛學電腦網 all rights reserved