码迷,mamicode.com
首页 > 其他好文 > 详细

遍历文件

时间:2014-06-29 15:05:49      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   java   color   文件   

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

遍历文件

标签:style   blog   http   java   color   文件   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!