php 递归目录
转载请注明来源:https://www.cnblogs.com/hookjc/
$TheFilePath='';function file_list($path)
{
global $TheFilePath;
if ($handle = opendir($path))
{
while (false !== ($file = readdir($handle)))
{
if ($file != "." && $file != "..")
{
if(strpos($path."/".$file,'_notes'))
continue;
if (is_dir($path."/".$file))
file_list($path."/".$file);
else
$TheFilePath.="|".$path."/".$file;
}
}
}
}
file_list('view');
echo str_replace("|","<br>",$TheFilePath);