read()){
if((is_dir($directory/$file)) and ($file!=.) and ($file!=..))
{
echo $file ;
tree($directory/$file);
}
else
{
echo $file ;
}
}
echo
;
$mydir->close();
}
//start the program
echo 目录为粉红色
;
tree(.);
?>
http://www.bkjia.com/phpjc/743149.htmlwww.bkjia.comtruehttp://www.bkjia.com/phpjc/743149.htmltecharticle复制代码 代码如下: ?php set_time_limit(0); function tree($directory) { $mydir=dir($directory); echo ul ; while($file=$mydir-read()){ if((is_dir($directory/$file)) and (...
