递归方式遍历文件夹下的所有文件及子文件夹 [php]

function getfiles($path){ if(!is_dir($path)) return false; $handle = opendir($path); while(false != ( $file = readdir($handle))){ if($file != '.' && $file != '..'){ $path2 = $path.'/'.$file; if(is_dir($path2)){ getfiles($path2); }else{ echo "
$path".'/'."$file
"; } } } } getfiles("/home/xjz/check_ip");

你可能感兴趣的:(递归方式遍历文件夹下的所有文件及子文件夹 [php])