//產生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 -- 把整個檔案讀入一個陣列中
以上就介紹了產生.Shtml PHP讀寫檔的方法產生HTML,包含了產生.Shtml方面的內容,希望對PHP教學有興趣的朋友有幫助。