标签:style blog http java color 文件
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;
搞了很久 测试了下 感觉还行 迭代的东西还是不行啊
标签:style blog http java color 文件
原文地址:http://www.cnblogs.com/moleng/p/3755310.html