三 首頁新聞發布
上次我們做了一個文件頭(至於文件尾
<?php
include(
include(
$newspath=
$newsfile=array();//准備新聞數組
$hd=dir($newspath); //目錄句柄
while($filename=$hd
{
//獲取全部文件
$s=strtolower($filename);
if(strstr($s
{
//檢測最新的修改日期
$lastchanged=fileatime($newspath
$newsfile[$filename]=$lastchanged;
}
}
arsort($newsfile); //文件按時間排序
//輸出文件
for(reset($newsfile);$key=key($newsfile);next($newsfile))
{
$fa=file($newspath
$n=count($fa);
echo
for($i=
{
$s=chop($fa[$i]);//去除空格
$s=htmlspecialchars($s);
print $s
}
}
$hd
include(
?>
這樣
From:http://tw.wingwit.com/Article/program/PHP/201311/21499.html