美文网首页
PHP遍历某一文件夹下所有文件

PHP遍历某一文件夹下所有文件

作者: Fa1se003 | 来源:发表于2016-05-20 11:44 被阅读188次

    我们用到了递归操作,不懂递归的小伙伴赶紧去google一下。

    <?php
    function getAllFiles($path){
        foreach(scandir($path) as $file){
            if($file === '.'|| $file === '..') continue;
            if(is_dir($path.'/'.$file)) getAllFiles($path.'/'.$file);
            else echo $path.'/'.$file."\n";
        }
    }
    getAllFiles('/Usersm/test');
    ?>
    
    

    相关文章

      网友评论

          本文标题:PHP遍历某一文件夹下所有文件

          本文链接:https://www.haomeiwen.com/subject/hhknrttx.html