chenhao
首页
栏目
标签
关于
友链
废话少说,放码过来
PHP读取文件夹所有文件并输出
php
程序人生
发布日期: 2022-03-10 11:15:45
喜欢量: 27 个
阅读次数:
743
PHP读取文件夹所有文件并输出
``` /** * 获取文件列表 * @author 陈浩 * @param string $dir 目录 * @return arr 返回文件数组 */ function getFile($dir) { $fileArray[]=NULL; if (false != ($handle = opendir ( $dir ))) { $i=0; while ( false !== ($file = readdir ( $handle )) ) { //去掉""."、".."以及带".xxx"后缀的文件 if ($file != "." && $file != ".."&&strpos($file,".")) { $fileArray[$i]=$file; //echo($file); if($i==100){ break; } $i++; } } //关闭句柄 closedir ( $handle ); } return $fileArray; } ```
文章作者:
chenhao
文章链接:
http://chenhaoblog.com/show/Mjg=
版权声明:
本博客所有文章除特別声明外,转载请注明来源
chenhaoBlog
!
分享: