這篇文章主要介紹了用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." "." ";