时间:2021-07-01 10:21:17 帮助过:7人阅读
以下为引用的内容: function tree($directory)
while($file=$mydir->read() AND $i<5) { if((is_dir(”$directory”)) AND ($file!=”.”) AND ($file!=”..”)) { $filetime=date(”Y-m-d H:i:s”,filectime($file)); //encode spaces $file = rawurlencode($file); // convert the + (this is one result from the function rawurlencode) in %20 $url = str_replace(’+’ , ‘%20′ , $file); echo “ $i+=1; } } echo “ $mydir->close(); } tree(”.”); // 列出当前目录 |
http://www.bkjia.com/PHPjc/364207.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/364207.htmlTechArticle烈火建站学院( LieHuo.Net )网络编程 关于php实现列出当前文件列表的方法,网上有很多,近日liehuo.net的小编综合了网上的一些资料, 改写了...