php 自定义函数

1.遍历文件夹下所有文件

function fetchDir($dir) { 
    foreach(glob($dir.'\*') as $file) { 
        echo $file,"\n"; 
        if(is_dir($file)) { 
            $this->fetchDir($file); 
        } 
    } 
}

 

posted on 2014-12-25 09:25  Flameman  阅读(126)  评论(0编辑  收藏  举报