以下列出了目录中的文件夹,index.php和favicon.ico。我想只看到文件夹。
有什么想法吗?
感谢。
<?php
// opens this directory
$myDirectory = opendir(".");
// gets each entry
while($entryName = readdir($myDirectory)) {
$dirArray[] = $entryName;
}
// closes directory
closedir($myDirectory);
// counts elements in array
$indexCount = count($dirArray);
// sorts files
sort($dirArray);
// print 'em
print("<table width='100%' cellspacing='10'>
<tr>
</tr>\n");
// loops through the array of files and print them all
for($index=0; $index < $indexCount; $index++) {
if (substr("$dirArray[$index]", 0, 1) != "."){ // don't list hidden files
print("<tr><td><a href='$dirArray[$index]'>$dirArray[$index]</a></td>");
print("</tr>\n");
}
}
print("</table>\n");
?>
答案 0 :(得分:4)
使用以下内容:
// gets each entry
while($entryName = readdir($myDirectory)) {
if(is_dir($entryName)) {
$dirArray[] = $entryName;
}
}
但我建议使用glob()
进行此类操作。 e.g:
glob($dir . '/*', GLOB_ONLYDIR)