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

php遍历目录下文件,并读取内容

时间:2016-07-21 17:31:30      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:

<?php
echo "<h2>遍历目录下文件,并读取内容</h2><br>\n"; 
function listDir($dir)
{
	if(is_dir($dir))
   	{
     	if ($dh = opendir($dir)) 
		{
        	while (($file = readdir($dh)) !== false)
			{
     			if((is_dir($dir."/".$file)) && $file!="." && $file!="..")
				{
     				echo "<b>",$file,"/</b>";
     				listDir($dir."/".$file."/");
     			}
				else
				{
         			if($file!="." && $file!="..")
					{
         				echo ‘<h3>‘.$file."</h3><br>";
						//逐行读取数据
						$file = fopen($dir.‘‘.$file,"r");
						while(! feof($file))
						  {
						  echo ‘<xmp>‘.fgets($file). "</xmp>";
						  }
						fclose($file);
      				}
     			}
				
        	}
        	closedir($dh);
     	}
   	}
}
//开始运行
//
echo "<b>文档标题</b><br/>";
listDir("D:/1/a/b/c/");
?>

  

php遍历目录下文件,并读取内容

标签:

原文地址:http://www.cnblogs.com/Tiago/p/5692264.html

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