首页 > 其他 > 详细

遍历文件

时间:2014-06-29 14:39:39      阅读:462      评论:0      收藏:0      [点我收藏+]
bubuko.com,布布扣
    public function findfile($arr) {
            $files = array();
            foreach ($arr as $file) {
                $child = glob($file."/*");
                if(count($child)>0) {
                    $file = $this->findfile($child);
                    $files = array_merge($files,$file);
                }
            }
        return array_merge($arr,$files);
    }    
    print_r($this->findfile(glob("D:/workspace/yunadmin/*")));exit;
bubuko.com,布布扣

搞了很久 测试了下 感觉还行 迭代的东西还是不行啊

遍历文件,布布扣,bubuko.com

遍历文件

原文:http://www.cnblogs.com/moleng/p/3755310.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!