在php中读取多个文件的内容

时间:2016-04-09 20:00:46

标签: php markdown file-get-contents

我是PHP新手所以请耐心等待 有一个dir名称文件名,其中包含diff sub-dir 在这些子目录中有一些.md文件 我想获取所有这些文件的内容并将其显示为

文件名:""

内容:""

我试过用这个但没有运气

    <?php
$directory = "./dirname";
$dir = opendir($directory);
while (($file = readdir($dir)) !== false) {
  $filename = $directory . $file;
  $type = filetype($filename);
  if ($type == 'file') {
     $contents = file_get_contents($filename);
     $items = explode('¬', $contents);
     echo '<table width="500" border="1" cellpadding="4">';
     foreach ($items as $item) {
       echo "<tr><td>$item</td></tr>\n";
     }
     echo '</table>';
  }
}
closedir($dir);

?>

0 个答案:

没有答案