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

WBOY
Release: 2016-06-23 14:00:04
Original
1007 people have browsed it

<?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);?>
Copy after login



回复讨论(解决方案)

有什么问题么?

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

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

用迭代器不是很简单?

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


用迭代器不是很简单?

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


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

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!