php统计文件夹大小
function dirsize($dir){
@$dh = opendir($dir);
$size = 0;
while($file = @readdir($dh)){
if($file!="." && $file!=".."){
$path = $dir."/".$file;
if(is_dir($path)){
$size += dirsize($path);
}elseif(is_file($path)){
$size += filesize($path);
}
}
}
@closedir($dh);
return $size;
}

浙公网安备 33010602011771号