Home  >  Article  >  php教程  >  获取文件目录的结构

获取文件目录的结构

PHP中文网
PHP中文网Original
2016-05-25 17:06:251230browse

跳至

/**
 * 获取目录的结构
 * @author 李俊* @param  [string] $path [目录路径]
 * @return [array]       [目录结构数组]
 */
function dirtree($path) {
	$handle = opendir($path);
	$itemArray=array();
	while (false !== ($file = readdir($handle))) {
		if (($file=='.')||($file=='..')){
		}elseif (is_dir($path.$file)) {
				try {
					$dirtmparr=dirtree($path.$file.'/');
				} catch (Exception $e) {
					$dirtmparr=null;
				};
	        	$itemArray[$file]=$dirtmparr;
	        }else{
	        	array_push($itemArray, $file);
	        }
	    }
	return $itemArray;
}

                   

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn