PHP는 지정된 폴더 정보(폴더 수, 파일 수, 폴더 크기)를 계산합니다.

WBOY
풀어 주다: 2016-07-25 08:55:52
원래의
885명이 탐색했습니다.
  1. //格式化输出目录大小 单位:Bytes,KB,MB,GB
  2. //也可以用于统计目录数
  3. //site bbs.it-home.org
  4. function getDirectorySize($path)
  5. {
  6. $totalsize = 0;
  7. $totalcount = 0;
  8. $dircount = 0;
  9. if ($handle = opendir ($path))
  10. {
  11. while (false !== ($file = readdir($handle)))
  12. {
  13. $nextpath = $path . '/' . $file;
  14. if ($file != '.' && $file != '..' && !is_link ($nextpath))
  15. {
  16. if (is_dir ($nextpath))
  17. {
  18. $dircount ;
  19. $result = getDirectorySize($nextpath);
  20. $totalsize = $result['size'];
  21. $totalcount = $result['count'];
  22. $dircount = $result['dircount'];
  23. }
  24. elseif (is_file ($nextpath))
  25. {
  26. $totalsize = filesize ($nextpath);
  27. $totalcount ;
  28. }
  29. }
  30. }
  31. }
  32. closedir ($handle);
  33. $total['size'] = $totalsize;
  34. $total['count'] = $totalcount;
  35. $total['dircount'] = $dircount;
  36. return $total;
  37. }
  38. function sizeFormat($size)
  39. {
  40. $sizeStr='';
  41. if($size<1024)
  42. {
  43. return $size." bytes";
  44. }
  45. else if($size<(1024*1024))
  46. {
  47. $size=round($size/1024,1);
  48. return $size." KB";
  49. }
  50. else if($size<(1024*1024*1024))
  51. {
  52. $size=round($size/(1024*1024),1);
  53. return $size." MB";
  54. }
  55. else
  56. {
  57. $size=round($size/(1024*1024*1024),1);
  58. return $size." GB";
  59. }
  60. }
  61. $path="/home/www/htdocs";
  62. $ar=getDirectorySize($path);
  63. echo "

    路径 : $path

    ";
  64. echo "目录大小 : ".sizeFormat($ar['size'])."
    ";
  65. echo "文件数 : ".$ar['count']."
    ";
  66. echo "目录术 : ".$ar['dircount']."
    ";
  67. //print_r($ar);
  68. ?>
复制代码


원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!