-
博文分类专栏
- Jquery基础教程
-
- 文章:(15)篇
- 阅读:46569
- shell命令
-
- 文章:(42)篇
- 阅读:154249
- Git教程
-
- 文章:(36)篇
- 阅读:234886
- leetCode刷题
-
- 文章:(76)篇
- 阅读:131876
-
php读取目录及子目录下所有文件名的方法2016-07-28 20:18 阅读(3953) 评论(0)
为了便于操作,先将PHP读取目录及子目录下所有文件名的方法封装成一个类。
// +---------------------------------------------------------------------- // | lidequan [ I CAN DO IT JUST WORK HARD ] // +---------------------------------------------------------------------- // | Copyright (c) 2016 http://www.findme.wang All rights reserved. // +---------------------------------------------------------------------- // | Author: lidequan
// +---------------------------------------------------------------------- class File{ /** *获取某个目录下所有文件 *@param $path文件路径 *@param $child 是否包含对应的目录 */ public function getFiles($path,$child=false){ $files=array(); if(!$child){ if(is_dir($path)){ $dp = dir($path); }else{ return null; } while ($file = $dp ->read()){ if($file !="." && $file !=".." && is_file($path.$file)){ $files[] = $file; } } $dp->close(); }else{ $this->scanfiles($files,$path); } return $files; } /** *@param $files 结果 *@param $path 路径 *@param $childDir 子目录名称 */ public function scanfiles(&$files,$path,$childDir=false){ $dp = dir($path); while ($file = $dp ->read()){ if($file !="." && $file !=".."){ if(is_file($path.$file)){//当前为文件 $files[]= $file; }else{//当前为目录 $this->scanfiles($files[$file],$path.$file.DIRECTORY_SEPARATOR,$file); } } } $dp->close(); } } 实例展示
读取Manual/html目录及子目录下所有文件名
$File=new File(); $info=$File->getFiles('Manual/html/',true);
读取Manual/html目录下所有文件名
$File=new File(); $info=$File->getFiles('Manual/html/');