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

网络编程 2021-07-05 09:50www.168986.cn编程入门
这篇文章主要介绍了用PHP来计算某个目录大小的方法,需要的朋友可以参考下
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//lg";
$ = dirsize("$bb");
$aa = $/1024/1024;
echo $aa.MB."
"."
";

Copyright © 2016-2025 www.168986.cn 狼蚁网络 版权所有 Power by