Home  >  Article  >  Backend Development  >  递归读取目录结构到数组中并保存目录结构 php新手

递归读取目录结构到数组中并保存目录结构 php新手

WBOY
WBOYOriginal
2016-06-23 14:00:041008browse

<?php$arr_dir = array();$path    = './';//递归读取目录结构到数组中并保存目录结构function makeDir($path,&$arr){	$dir = opendir($path);	while(($file=readdir($dir))!==FALSE)	{		if($file!='.'&&$file!='..')		{			var_dump($file);			if(!is_dir($path.'/'.$file))			{				$arr[] = $file;			}			else			{								makeDir($path.'/'.$file, $arr[$file]);			}		}	}	closedir($dir);}makeDir($path, $arr_dir);var_dump($arr_dir);?>



回复讨论(解决方案)

有什么问题么?

没有问题,新手写着玩,没发过贴。。。

以为你遇到问题了。原来是狼来了。。。

用迭代器不是很简单?

$p = './';$ite = new RecursiveDirectoryIterator($p);foreach (new RecursiveIteratorIterator($ite) as $filename=>$cur) {  if(is_dir($filename)) continue;  $res[] = $filename;}print_r($res);


用迭代器不是很简单?

$p = './';$ite = new RecursiveDirectoryIterator($p);foreach (new RecursiveIteratorIterator($ite) as $filename=>$cur) {  if(is_dir($filename)) continue;  $res[] = $filename;}print_r($res);


版主啊 这个PHP迭代器运用是不是很流行啊 ,我新手,对php迭代器不是很了解,感觉这个运用很广啊

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
Previous article:新手如何学习phpNext article:phpQuery 数据抓取疑问