<?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 -- 把整個檔案讀入一個陣列中
以上是PHP讀寫檔案產生HTML的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!