PHP implements the function of counting directory file size, _PHP tutorial

WBOY
Release: 2016-07-12 09:02:45
Original
865 people have browsed it

php implements a function to count the size of files in a directory.

I just arrived at the company in the morning and my boss told me to quickly write a small function to count the size of files in a specified directory. I got it. Go ahead and do it, luckily you have a little basic knowledge and you’ll be done in a while, haha. The code is below.

<&#63; 
/** 
 统计目录文件大小的函数 
 @author xfcode 
*/ 
 function dirsize($dir) 
 { 
   @$dh = opendir($dir); 
   $size = 0; 
   while ($file = @readdir($dh)) 
  { 
    if ($file != "." and $file != "..") 
   { 
     $path = $dir."/".$file; 
      if (is_dir($path)) 
     { 
       $size += dirsize($path); 
      } 
     elseif (is_file($path)) 
     { 
       $size += filesize($path); 
      } 
    } 
   } 
  @closedir($dh); 
  return $size; 
 } 
//function end 
 
//eg: 
 $dir_path = "./my_files"; 
 $dir_size = dirsize($dir_path); 
 $dir_size = $dir_size/1024/1024; 
 echo $dir_size."MB"; 
 &#63;> 

Copy after login

This function can recursively loop through all files in a directory and calculate the total file size in MB.

Let’s take a look at the code below

<&#63;php
 #循环遍历目录中所有的文件,并统计目录和文件的大小
 $dirName="phpMyAdmin";
 $dir=opendir($dirName); #返回一个资源类型
 while($fileName=readdir($dir)){
 $file=$dirName."/".$fileName;
 if($fileName!="." && $fileName!=".."){
  if(is_dir($file)){
  echo "<font color='red'>".$fileName."===".date("Y-m-d H:i:s",filectime($file))."==".filetype($file)."==".toSize(dirSize($file))."</font><br/>";
  }
  else{
  echo "<font color='green'>".$fileName."=====".date("Y-m-d H:i:s",filectime($file))."====".filetype($file)."====".toSize(filesize($file))."</font><br/>";
  }
 }
 }
 closedir($dir);
 
 #把文件或目录的大小转化为容易读的方式
 function toSize($size){
 $dw; #指定文件或目录统计的单位方式
 if($size>pow(2,30)){
  $dw="GB";
  $size=round($size/pow(2,30),2);
 }
 else if($size>pow(2,20)){
  $dw="MB";
  $size=round($size/pow(2,20),2);
 }
 else if($size>pow(2,10)){
  $dw="KB";
  $size=round($size/pow(2,10),2);
 }
 else
 {
  $dw="bytes";
 }
 return $size.$dw;
 }

 #利用递归的方式统计目录的大小
 function dirSize($dirName){
 $dirsize=0;
 $dir=opendir($dirName);
 while($fileName=readdir($dir)){
  $file=$dirName."/".$fileName;
  if($fileName!="." && $fileName!=".."){   //一定要进行判断,否则会出现错误的
  if(is_dir($file)){
   $dirsize+=dirSize($file);
  }
  else{
   $dirsize+=filesize($file);
  }
  }
 }
 closedir($dir);
 return $dirsize;
 }
&#63;>
Copy after login

Articles you may be interested in:

  • php statistics file size, output in GB, MB, KB, B
  • php method to implement statistics on email size
  • How to get the file size in PHP
  • Collection of PHP file size formatting functions
  • PHP traverses the directory and returns the statistical directory size
  • Sharing of custom functions for PHP statistical directory size

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1084540.htmlTechArticlephp implements the function of counting directory file size. I just arrived at the company in the morning and my boss told me to hurry up and write a small function. Used to count the size of files in a specified directory. Let me go and do it. Fortunately...
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template