DeTechn Blog

php遍历一个文件下的所有文件和子文件夹下的文件

function AllFile($dir){

    if($dh = opendir($dir)){

        while (($file = readdir($dh)) !== false){

            if($file !='..' && $file !='.'){

                if(is_dir($dir.'/'.$file)){

                    AllFile($dir.'/'.$file);    //如果判断还是文件,则递归

                }else{  

                    echo $file;         //输出文件名

                }

            }

        } 

    }

}

当前页面是本站的「Google AMP」版。查看和发表评论请点击:完整版 »