写一个函数,能够遍历一个文件夹下的所有文件和子文件夹。
1 回答
富国沪深
TA贡献1790条经验 获得超9个赞
function my_scandir($dir)
{
$files = array();
if ( $handle = opendir($dir) ) {
while ( ($file = readdir($handle)) !== false ) {
if ( $file != ".." && $file != "." ) {
if ( is_dir($dir . "/" . $file) ) {
$files[$file] = scandir($dir . "/" . $file);
}else {
$files[] = $file;
}
}
}
closedir($handle);
return $files;
}
}
- 1 回答
- 0 关注
- 492 浏览
添加回答
举报
0/150
提交
取消