PHP遍历文件夹下所有文件

<?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('/Users/sam/test');
?>


你可能感兴趣的:(PHP遍历文件夹下所有文件,PHP遍历文件夹下所有文件,PHP遍历文件夹下所有文件,PHP遍历文件夹下所有文件)