我遇到的问题是我只想显示子目录,但是我从谷歌获得的代码,它显示父目录和子目录。我的代码在这里:
foreach(glob('Comments/*', GLOB_ONLYDIR) as $dir){
echo "<a href=comment.php?dir=". $dir . " >". $dir ."</a><br/>";
}
'评论'是父目录。和每个子目录,我将它们添加到每个标签链接。这段代码的结果是:
Comments/New Folder1
Comments/New Folder2
Comments/New Folder3
.
.
.
我希望这样表现出来:
New Folder1
New Folder2
New Folder3
.
.
.
请大家帮助我...提前致谢