首页 > 代码库 > PHP遍历目录返回统计目录大小实例
PHP遍历目录返回统计目录大小实例
分享一个 PHP遍历目录并返回统计目录大小的方法。
代码:
<?php $dirname = "test1"; //mkdir($dirname); //遍历一层目录 function listdir($dirname) { $ds = opendir($dirname); while($file = readdir($ds)) { $path = $dirname.‘/‘.$file; if(is_dir($file)) { echo "DIR:".$file."<br>"; if($file != "." && $file != "..") { listdir($file); } } else { echo "FILE:".$file . "<br>"; } } } function totdir($dirname) { //对listdir稍加修改 static $tot = 0; $ds = opendir($dirname); while($file = readdir($ds)) { $path = $dirname.‘/‘.$file; if(is_dir($file)) { //echo "DIR:".$file."<br>"; if($file != "." && $file != "..") { $tot += totdir($file); } } www.jbxue.com else { //echo "FILE:".$file . "<br>"; $tot += filesize($path); } } //返回总计 return $tot; } listdir($dirname); echo totdir($dirname)." bytes"; ?>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。