简单的demo,列出当前目录下所有的文件

时间:2021-11-20 12:45:38


 
functiongetfiles($path){     foreach(scandir($path) as$afile)
    {
        if($afile=='.'||$afile=='..') continue;
        if(is_dir($path.'/'.$afile))
        {
            getfiles($path.'/'.$afile);
        } else {
            echo $path.'/'.$afile.'<br/>';
        }
    }
}
getfiles(__DIR__);