<?php
foreach (glob("POSTS/*.txt") as $filename)
{
$file = fopen($filename, 'r') or exit("Unable to open file!");
//Output a line of the file until the end is reached
echo date('D, M jS, Y H:i a', filemtime($filename))."<br>";
while(!feof($file))
{
echo fgets($file). "<br>";
}
echo "<hr/>";
}
fclose($file);
?>
所以这个php代码从一个文件夹中逐行读取所有文件和每个文件,我想要它以便在读取文件时:为第一行添加一个html标签以使第一行成为一个大标题和下一行普通的?我该怎么做,谢谢