三首頁新聞發布,讓你更新更輕鬆(中)
上次我們做了一個文件頭(至於文件尾,請大家自己做,假設為tail.php),一個函數的模組,現在,我們來一個基本功能的實現,也就是動態發布啦
include("makestr.php";
include("head.php");
$newspath="/announce/ "; //以文字檔案存放的新聞檔案的目錄
$newsfile=array();//準備新聞數組
$hd=dir($newspath); //目錄句柄
while($ filename=$hd->read()){ //取得全部檔案
$s=strtolower($filename);
if(strstr($s,".txt")){
//偵測最新的修改日期
$lastchanged=fileatime($newspath.$filename);
$newsfile[$filename]=$lastchanged;
}
}
arsort($newsfile); //檔案依時間排序
//輸出檔
for(reset($newsfile);$key=key($newsfile);next($newsfile))
{$fa=file($newspath .$key);
$n=count($fa);
echo "
".date("d.m.Y-H:i:s".$newsfile[$key])."
n";
for($i=0;$i$s=chop($fa[$i]);//移除空格
$s=htmlspecialchars($s);
print $s."