欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

遍历文件夹下所有文件

程序员文章站 2022-04-10 09:29:32
...
php代码:
function foreachDir($path){
		$handle=opendir($path);
		if($handle){
			while (false !== ($file = readdir($handle))) {
				if($file!="." && $file!='..'){
					if(is_dir($path.$file)){
						echo $path.$file."<br/>"; 
						foreachDir($path.$file);
					}else{
						echo "--".$path."/".$file."<br/>";
					}
				}
			}
			return false;
		}
	}