> php教程 > PHP源码 > php遍历目录

php遍历目录

PHP中文网
풀어 주다: 2016-06-01 14:32:44
원래의
1093명이 탐색했습니다.

1. [PHP]代码   

<?php
	
	//遍历文件夹
	echo memory_get_usage() . "\n";

	function traversalDir($path = &#39;.&#39;)
	{
		echo memory_get_usage() . "\n";
		$dir = opendir($path);
		echo memory_get_usage() . "\n";
		while (($file = readdir($dir)) !== false)
		{
			$sub_dir = $path . DIRECTORY_SEPARATOR . $file;    //构建子目录路径  directory_separator

			if ($file == "." || $file == "..")
			{
				continue;
			}
			else if (is_dir($sub_dir))
			{
				echo &#39;Directory &#39; . $file . &#39;:&#39; . "\n";
                traversalDir($sub_dir);
			}
			else 
			{
				echo &#39;File in Directory &#39; . $path . &#39;: &#39; . $file . "\n";
			}
		}
	}

	traversalDir();
	echo memory_get_usage() . "\n";

	echo memory_get_usage() . "\n";
	//使用PHP函数处理读取文件及文件夹.
	function loadReadDir($path = ".")
	{
		echo memory_get_usage() . "\n";
		$pathDir = dir($path);
		echo memory_get_usage() . "\n";
		while(($file = $pathDir->read()) !== false)
		{
			$dir = $path . DIRECTORY_SEPARATOR . $file;

			if ($file == "." || $file == "..")
			{
				continue;
			}
			else if (is_dir($dir))
			{
				echo "directory:" . $file . "\n";
				loadReadDir($dir);
			}
			else
			{
				echo "fileName:" . $file . "\n";
			}
		}

		$pathDir->close();
	}

	loadReadDir();

	echo memory_get_usage() . "\n";
로그인 후 복사

                   

                   

관련 라벨:
php
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 추천
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿