PHP個人網站架設連環講(三)

來源:互聯網
上載者:User

三 首頁新聞發布,讓你更新更輕鬆(中)

上次我們做了一個檔案頭(至於檔案尾,請大家自己做,假設為tail.php),一個函數的模組,現在,我們來一個準系統的實現,也就是動態發布啦

<?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 "<p>".date("d.m.Y-H:i:s".$newsfile[$key])."<br>\n";
for($i=0;$i<$n;$i=$i+1){
$s=chop($fa[$i]);//去除空格
$s=htmlspecialchars($s);
print $s."</p>\n";

}
}
$hd->close(); //釋放控制代碼
include("tail.php");
?>
這樣,將你的新聞文本傳上你根目錄的annouce子目錄下,就可以方便發布新聞了。但真正的方便還不在於這,比如說,當新聞過時的時候,程式能自動刪除它,多好。不用ftp,直接線上寫下要新發的公告,多方便。好了,且聽下回分解。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.