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

  

posted on 2017-07-16 10:17  huodaihao  阅读(3744)  评论(0编辑  收藏  举报

导航