php获取文件夹中文件
摘要:
使用 scandir函数 可以扫描文件夹下内容 <?php class DirPath{ function scandirFolder($path) { $list = []; $temp_list = scandir($path); foreach ($temp_list as $file) { 阅读全文
posted @ 2020-04-06 22:31 头大的冯冯 阅读(211) 评论(0) 推荐(0) 编辑