Home  >  Article  >  Backend Development  >  一个统计目录文件大小的php函数_PHP教程

一个统计目录文件大小的php函数_PHP教程

WBOY
WBOYOriginal
2016-07-13 10:39:35973browse

  1.    
  2. /** 
  3.   统计目录文件大小的函数 
  4.   @author xfcode 
  5.   @link http://www.jbxue.com 
  6. */  
  7.  function dirsize($dir)  
  8.  {  
  9.    @$dh = opendir($dir);  
  10.    $size = 0;  
  11.    while ($file = @readdir($dh))  
  12.   {  
  13.     if ($file != "." and $file != "..")  
  14.    {  
  15.      $path = $dir."/".$file;  
  16.       if (is_dir($path))  
  17.      {  
  18.        $size += dirsize($path);  
  19.       }  
  20.      elseif (is_file($path))  
  21.      {  
  22.        $size += filesize($path);  
  23.       }  
  24.     }  
  25.    }  
  26.   @closedir($dh);  
  27.   return $size;  
  28.  }  
  29. //function end   
  30.   
  31. //eg:  
  32.  $dir_path = "./my_files";  
  33.  $dir_size = dirsize($dir_path);  
  34.  $dir_size = $dir_size/1024/1024;  
  35.  echo $dir_size."MB";  
  36.  ?>  

这个函数可以递归遍历目录中的所有文件,并计算以MB为单位的文件总大小。 
新手出招,大佬们见笑了。

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/729851.htmlTechArticle? /** 统计目录文件大小的函数 @authorxfcode @linkhttp://www.jbxue.com */ functiondirsize($dir) { @$dh =opendir($dir); $size= 0 ; while ($file= @readdir ($dh)) { if ($file...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn