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__);
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__);