码迷,mamicode.com
首页 > Web开发 > 详细

php 递归遍历目录

时间:2017-07-16 11:22:41      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:while   set   type   输出   遍历目录   sed   echo   har   highlight   

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

  

php 递归遍历目录

标签:while   set   type   输出   遍历目录   sed   echo   har   highlight   

原文地址:http://www.cnblogs.com/huodaihao/p/7189816.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!