1.遍历文件夹下所有文件
function fetchDir($dir) { foreach(glob($dir.‘\*‘) as $file) { echo $file,"\n"; if(is_dir($file)) { $this->fetchDir($file); } } }
时间: 2024-10-06 23:42:23
1.遍历文件夹下所有文件
function fetchDir($dir) { foreach(glob($dir.‘\*‘) as $file) { echo $file,"\n"; if(is_dir($file)) { $this->fetchDir($file); } } }