Posted in PHP onJune 21, 2013
直接给源代码了:
$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/';就可以了。
使用php将某个目录下面的所有文件罗列出来的方法详解
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@