<?php
//生成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_contents -- 將整個文件讀入一個字符串
file -- 把整個文件讀入一個數組中