当前位置:Gxlcms > PHP教程 > 用PHP来计算某个目录大小的方法_PHP教程

用PHP来计算某个目录大小的方法_PHP教程

时间:2021-07-01 10:21:17 帮助过:5人阅读

PHP CURL session COOKIE

可以调用系统命令,还可以这样:
代码如下:

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

$bb = "/var/www/lg";
$cc = dirsize("$bb");
$aa = $cc/1024/1024;
echo $aa.MB."
"."
";

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/748158.htmlTechArticlePHP CURL session COOKIE 可以调用系统命令,还可以这样: 代码如下:

function dirsize($dir) { @$dh = opendir($dir); $size = 0; while ($file = @readdir($d...

人气教程排行