php遍历文件夹和文件列表示例分享


Posted in PHP onMarch 11, 2014

为PHP遍历目录和文件列表写了一个简单的类,并附上使用实例,大家参考使用吧

<?php
define('DS', DIRECTORY_SEPARATOR);
class getDirFile{
    //返回数组
    private $DirArray  = array();
    private $FileArray = array();
    private $DirFileArray = array();
    private $Handle,$Dir,$File;
    //获取目录列表
    public function getDir( & $Dir ){
        if( is_dir($Dir) ){
            if( false != ($Handle = opendir($Dir)) ){
                while( false != ($File = readdir($Handle)) ){
                    if( $File!='.' && $File!='..' && !strpos($File,'.') ){
                        $DirArray[] = $File;
                    }
                }
                closedir( $Handle );
            }
        }else{
            $DirArray[] = '[Path]:\''.$Dir.'\' is not a dir or not found!';
        }
        return $DirArray;
    }
    //获取文件列表
    public function getFile( & $Dir ){
        if( is_dir($Dir) ){
            if( false != ($Handle = opendir($Dir)) ) {
                while( false != ($File = readdir($Handle)) ){
                    if( $File!='.' && $File!='..' && strpos($File,'.') ){
                        $FileArray[] = $File;
                    }
                }
                closedir( $Handle );
            }
        }else{
            $FileArray[] = '[Path]:\''.$Dir.'\' is not a dir or not found!';
        }
        return $FileArray;
    }
    //获取目录/文件列表
    public function getDirFile( & $Dir ){
        if( is_dir($Dir) ){
            $DirFileArray['DirList'] = $this->getDir( $Dir );
            if( $DirFileArray ){
                foreach( $DirFileArray['DirList'] as $Handle ){
                    $File = $Dir.DS.$Handle;
                    $DirFileArray['FileList'][$Handle] = $this->getFile( $File );
                }
            }
        }else{
            $DirFileArray[] = '[Path]:\''.$Dir.'\' is not a dir or not found!';
        }
        return $DirFileArray;
    }
}
?>

实例:(相对路径或绝对路径)

1.获取目录列表

<?php
$Dir_dir  = './example';
$getDirFile = new getDirFile();
$getDir = $getDirFile->getDir( $Dir_dir );
print_r($getDir);
?>

显示

<?php
$File_one_dir = './example/example_one';
$File_two_dir = 'E:/Workspace/mycode/getDirFile/example/example_two';
$getDirFile = new getDirFile();
$getFile_one = $getDirFile->getFile( $File_one_dir );
$getFile_two = $getDirFile->getFile( $File_two_dir );
print_r($getFile_one);
print_r($getFile_two);
?>

2.获取文件列表

<?php
$File_one_dir = './example/example_one';
$File_two_dir = 'E:/Workspace/mycode/getDirFile/example/example_two';
$getDirFile = new getDirFile();
$getFile_one = $getDirFile->getFile( $File_one_dir );
$getFile_two = $getDirFile->getFile( $File_two_dir );
print_r($getFile_one);
print_r($getFile_two);
?>

显示

Array
(
    [0] => example.sql
    [1] => example.txt
)
Array
(
    [0] => example.php
)

3.获取目录/文件列表

<?php
$Dir_dir  = './example';
$getDirFile = new getDirFile();
$getDirFile  = $getDirFile->getDirFile( $Dir_dir );
print_r($getDirFile);
?>

显示

Array
(
    [DirList] => Array
        (
            [0] => example_one
            [1] => example_two
        )
    [FileList] => Array
        (
            [example_one] => Array
                (
                    [0] => example.sql
                    [1] => example.txt
                )
            [example_two] => Array
                (
                    [0] => example.php
                )
        )
)
PHP 相关文章推荐
php preg_match_all结合str_replace替换内容中所有img
Oct 11 PHP
php数组函数序列之array_pop() - 删除数组中的最后一个元素
Nov 07 PHP
PHP __autoload函数(自动载入类文件)的使用方法
Feb 04 PHP
str_replace只替换一次字符串的方法
Apr 09 PHP
PHP 清空varnish 缓存的详解(包括指定站点下的)
Jun 20 PHP
jQuery Mobile + PHP实现文件上传
Dec 12 PHP
php微信公众平台开发之获取用户基本信息
Aug 17 PHP
PHP生成各种随机验证码的方法总结【附demo源码】
Jun 05 PHP
PHP实现根据密码长度显示安全条
Jul 04 PHP
laravel5.4利用163邮箱发送邮件的步骤详解
Sep 22 PHP
php 可变函数使用小结
Jun 12 PHP
PHP实现一个轻量级容器的方法
Jan 28 PHP
php获取文件夹路径内的图片以及分页显示示例
Mar 11 #PHP
php上传图片存入数据库示例分享
Mar 11 #PHP
php使用反射插入对象示例分享
Mar 11 #PHP
php数组编码转换示例详解
Mar 11 #PHP
使用Discuz关键词服务器实现PHP中文分词
Mar 11 #PHP
PHP输出缓存ob系列函数详解
Mar 11 #PHP
php初始化对象和析构函数的简单实例
Mar 11 #PHP
You might like
discuz authcode 经典php加密解密函数解析
2020/07/12 PHP
解析array splice的移除数组中指定键的值,返回一个新的数组
2013/07/02 PHP
ThinkPHP5 的简单搭建和使用详解
2018/11/15 PHP
php中字符串和整数比较的操作方法
2019/06/06 PHP
Yii框架安装简明教程
2020/05/15 PHP
基于jquery的无缝循环新闻列表插件
2011/03/07 Javascript
JavaScript检查数字是否为整数或浮点数的方法
2015/06/09 Javascript
JavaScript中的Math.atan2()方法使用详解
2015/06/15 Javascript
JavaScript 2048 游戏实例代码(简单易懂)
2016/03/25 Javascript
利用JavaScript判断浏览器类型及版本
2016/08/23 Javascript
原生js实现网页顶部自动下拉/收缩广告效果
2017/01/20 Javascript
详解AngularJs路由之Ui-router-resolve(预加载)
2017/06/13 Javascript
angularjs+bootstrap实现自定义分页的实例代码
2017/06/19 Javascript
vue中如何实现后台管理系统的权限控制的方法示例
2018/09/19 Javascript
解决vue单页面多个组件嵌套监听浏览器窗口变化问题
2020/07/30 Javascript
Postman参数化实现过程及原理解析
2020/08/13 Javascript
Python 专题六 局部变量、全局变量global、导入模块变量
2017/03/20 Python
基于Python 装饰器装饰类中的方法实例
2018/04/21 Python
pycharm运行和调试不显示结果的解决方法
2018/11/30 Python
计算机二级python学习教程(3) python语言基本数据类型
2019/05/16 Python
使用Python计算玩彩票赢钱概率
2019/06/26 Python
Python OpenCV图像指定区域裁剪的实现
2019/10/30 Python
提升python处理速度原理及方法实例
2019/12/25 Python
Python标准库json模块和pickle模块使用详解
2020/03/10 Python
django实现模型字段动态choice的操作
2020/04/01 Python
Keras自定义IOU方式
2020/06/10 Python
如何用border-image实现文字气泡边框的示例代码
2020/01/21 HTML / CSS
html5教你做炫酷的碎片式图片切换 (canvas)
2017/07/28 HTML / CSS
HTML5 video进入全屏和退出全屏的实现方法
2020/07/28 HTML / CSS
自强自立美德少年事迹材料
2014/08/16 职场文书
医院科室评语
2015/01/04 职场文书
英文自荐信范文
2015/03/25 职场文书
迁徙的鸟观后感
2015/06/09 职场文书
Python实现socket库网络通信套接字
2021/06/04 Python
python用海龟绘图写贪吃蛇游戏
2021/06/18 Python
python数据处理之Pandas类型转换
2022/04/28 Python