阿里云限量代金券 | 此广告位出租25元/月 |
代码如下:
<?php $dir="./upload"; //指定的路径 $sitepath = 'http://localhost/upload/'; //遍历文件夹下所有文件 if (false != ($handle = opendir ( $dir ))) { echo "$dir 目录下的文件列表:<br />"; $i = 0; while (false !== ($file = readdir($handle))) { if ($file != "." && $file != ".." && !is_dir($dir.'/'.$file)) { echo '<a href="' . $sitepath . $file . '">'.$file. '</a><br />'; } } //关闭句柄 closedir($handle); } ?>
代码安全提示:如果是运行于互联网上,需要考虑文件的访问安全性。
运行截图:
推荐您阅读更多有关于“”的文章
Powered By Z-Blogphp
分享:
支付宝
微信