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

遍历目录下文件,并读取内容
\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 "",$file,"/"; listDir($dir."/".$file."/"); } else { if($file!="." && $file!="..") { echo '

'.$file."


"; //逐行读取数据 $file = fopen($dir.''.$file,"r"); while(! feof($file)) { echo ''.fgets($file). ""; } fclose($file); } } } closedir($dh); } } } //开始运行 // echo "文档标题
"; listDir("D:/1/a/b/c/"); ?>

  

转载于:https://www.cnblogs.com/Tiago/p/5692264.html

你可能感兴趣的:(php遍历目录下文件,并读取内容)