当前位置:Gxlcms > PHP教程 > 使用php将某个目录下面的所有文件罗列出来的方法详解

使用php将某个目录下面的所有文件罗列出来的方法详解

时间:2021-07-01 10:21:17 帮助过:36人阅读

直接给源代码了:
代码如下:
$current_dir = 'E:/temp/';
$dir = opendir($current_dir);
echo "direcotry list:<ul>";
while(false !== ($file=readdir($dir))){
 if($file != "." && $file != ".."){
  echo "<li>$file</li>";
 }
}
echo "</ul>";
closedir($dir);

如果跟web是同一个盘符,就直接写:$current_dir='/temp/';就可以了。

人气教程排行