php 递归遍历目录


<?php

header('Content-Type: text/html; charset=utf-8');
/**	
 * @param 目录地址
 */
function readDirs($path) {
	$dir_handle = openDir($path);

	while(false !== $file=readDir($dir_handle)) {
		if ($file=='.' || $file=='..') continue;

		//输出该文件
		echo $file, '<br>';
		//判断当前是否为目录
		if(is_dir($path . '/' . $file)) {
			//是目录
			readDirs($path . '/' . $file);
		}

	}

	closeDir($dir_handle);
}

// $path = './';
// readDirs($path);

  


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM