我想使用一个函数从所有目录和子目录中获取所有文件名、大小、路径。我已经使用递归函数做了同样的事情。这是我的代码。
function scan_dir($path, $exclude){
$ite = new RecursiveDirectoryIterator($path);
$bytestotal=0;
$nbfiles=0;
$file_data = array();
$i= 0;
foreach (new RecursiveIteratorIterator($ite,RecursiveIteratorIterator::CHILD_FIRST) as $filename => $cur) {
if ($cur->isDir())
{
continue ;
}
$files = str_replace('\\','/', $filename);
$filesize = $cur->getSize();
$exclude = array_filter($exclude);
$data = array('name'=>$files, 'path'=>$cur->getPath(),'size'=>$cur->getSize());
$file_data[] = $data;
$i++;
$nbfiles++;
$bytestotal += $filesize;
}
$bytestotal = $bytestotal;
return array( 'total_files'=> $nbfiles, 'total_size' => $bytestotal, 'files'=> $file_data);
}
问题是当我在 linux 服务器上运行我的代码时,由于递归函数,它运行缓慢。请我可以有相同的替代品,以便我可以获得相同的输出但使用不同的功能。
我想添加一个if else部分,即检查服务器,如果是linux则{ } else { recursive function } 非常感谢任何帮助。