php显示目录下所有文件源码,可配合前一篇分享的上传页面,实现上传后的文件显示,代码如下:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <title>kns</title> </head> <body> <h1>kns.xyz资源下载</h1> <?php $d=opendir('./'); while($file=readdir($d)){ if(is_file($file)) { $strFile = substr($file,-3); if($strFile == 'zip' || $strFile == 'rar') { echo "<a href='".$file."'>".$file."</a><br />"; } } } closedir($d); ?> </body> </html>
本文地址:https://www.xiaoyaogzs.com/3676.html
关注我们:请关注一下我们的微信公众号:扫描二维码,公众号:小姚户外
版权声明:本文为原创文章,版权归 小姚 所有,欢迎分享本文,转载请保留出处!
关注我们:请关注一下我们的微信公众号:扫描二维码,公众号:小姚户外
版权声明:本文为原创文章,版权归 小姚 所有,欢迎分享本文,转载请保留出处!