做一个数据转换的功能的时候,需要将指定文件夹中的 xls 文件查找出来,显示在前台列表中,因此后台需要对文件夹进行遍历,并过滤 xls 出来,传递到前台显示,写个函数筛选文件夹中指定文件类型的文件列表。
private function getFileList($dir) { $fileArray[]=NULL; if (false != ($handle = opendir ( $dir ))) { $i=0; while ( false !== ($file = readdir ( $handle )) ) { if ($file != "." && $file != ".." && strpos($file,".xls")) { $fileArray[$i]= $dir.DIRECTORY_SEPARATOR.$file; $i++; } } closedir ( $handle ); } return $fileArray; }
文章源自陈学虎-https://chenxuehu.com/article/2019/08/7478.html
由于需求简单,直接指定 xls 了,暂时就这样记录,不做参数传递优化了,等有复杂的需求,再处理。文章源自陈学虎-https://chenxuehu.com/article/2019/08/7478.html
文章源自陈学虎-https://chenxuehu.com/article/2019/08/7478.html 文章源自陈学虎-https://chenxuehu.com/article/2019/08/7478.html
评论