//產生HTML
$countfile="template.html";
$num=file_get_contents($countfile);
echo $num;
$num=str_replace(" |*|*|PAGE_TITLE|*|*|","myhome",$num);
$path="template.html";
$handle=fopen($path,"w"); / /寫入方式開啟新聞路徑
fwrite($handle,$num); //把剛才替換的內容寫入產生的HTML檔案
fclose($handle);
?>
file_get_getcontents -- 將整個檔案讀入一個字串
file -- 把整個檔案讀入一個陣列中