把以下代码复制到新文件,把文件复制到相应目录浏览!不是当前目录的,修改$path的值,如:$path= "D:\music"; 1 <? 2 $path= dirname(__FILE__);//当前文件所在目录 3 function file_list($path) 4 { 5 if ($handle = opendir($path))//打开路径成功 6 { 7 while (false !== ($file = readdir($handle)))//循环读取目录中的文件名并赋值给$file 8 { 9 ... Read More
posted @ 2012-10-12 15:28 tinyphp Views(727) Comments(0) Diggs(0) Edit