列出目录的内容
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了列出目录的内容相关的知识,希望对你有一定的参考价值。
To make an image browser, add these lines:$ext = strtolower(substr("$dirArray[$index]", strrpos("$dirArray[$index]", '.') + 1)); //get file extensions
if ("$ext" == "jpg") { // if file is a jpg
print("$dirArray[$index]<a href="$dirArray[$index]"></a>"); // show image and create link to it
// open this directory // get each entry $dirArray[] = $entryName; } // close directory // count elements in array Print ("$indexCount files<br> "); // sort 'em // print 'em print("<TABLE border=1 cellpadding=5 cellspacing=0 class=whitelinks> "); print("<TR><TH>Filename</TH><th>Filetype</th><th>Filesize</th></TR> "); // loop through the array of files and print them all for($index=0; $index < $indexCount; $index++) { print("<TR><TD><a href="$dirArray[$index]">$dirArray[$index]</a></td>"); print("<td>"); print("</td>"); print("<td>"); print("</td>"); print("</TR> "); } } print("</TABLE> ");
以上是关于列出目录的内容的主要内容,如果未能解决你的问题,请参考以下文章
RecursiveDirectoryIterator() 不显示空目录