用PHP来计算某个目录大小的方法
时间:2022-05-19 08:56:44|栏目: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/www/lg";
$cc = dirsize("$bb");
$aa = $cc/1024/1024;
echo $aa.MB."
"."
";
可以调用系统命令,还可以这样:
复制代码 代码如下:
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."
"."
";
上一篇:Php注入点构造代码
栏 目:PHP代码
下一篇:没有了
本文标题:用PHP来计算某个目录大小的方法
本文地址:http://www.codeinn.net/misctech/202317.html