0
<?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標籤,使第一行成爲大標題,下一行正常?我如何做到這一點,得益於PHP輸入文件行做第一行頭一個標籤
您可以使用[與fgets(http://php.net/manual/en/function.fgets.php)做這件事 – 2013-03-24 10:52:00
你能告訴我怎麼實施它請進入我的編碼 – Josh 2013-03-24 10:52:36