求助!!!!!请解答
求助!!!!!
做个程序列出当前目录下的全部文件,包括子目录下的,子目录下也可能 有子目录,要求程序可以找出所有子目录下的文件列出
if( $_GET["currentdir"] == "" )
{
$currentdir="./";
}
else
{
$currentdir= stripslashes($_GET["currentdir"] );
}
$handle=opendir($currentdir);
while($file=readdir($handle))
{
if(is_dir($currentdir."/".$file))
{
if ($file != "." && $file != "..")
print("<a href=\"".$PHP_SELF."?currentdir=".$currentdir."/".$file."\">".$file."</a>");
}
else
print($file);
}