アイデア
fopen関数とfread関数を使用してテンプレートを取得し、str_replace関数を使用してテンプレートタグを変数に置き換え、最後にfwrite関数を使用して新しいHTMLページを出力します
Index.html テンプレート ページ
{title} {content}
header('Content-Type:text/html; charset=utf-8'); $conn=mysql_connect('localhost','root',''); $db=mysql_select_db('bbs',$conn) ); mysql_query('set names utf8'); $sql="select * from Notice"; //print_r($arr); $title=$arr[タイトル]; $content=$arr[コンテンツ]; $neirong=$arr[id].".html"; ' r'); $ht=fread($fp,filesize($file)); $str=str_replace('{title}',$title,$ht);コンテンツ ,$str); $file=fopen($neirong,'w'); } ?>
「PHP勉強記」著者
http://www.bkjia.com/PHPjc/478635.html
www.bkjia.comtruehttp://www.bkjia.com/PHPjc/478635.html技術記事このアイデアは、fopen 関数と fread 関数を使用してテンプレートを取得し、次に str_replace 関数を使用してテンプレート タグを変数に置き換え、最後に fwrite 関数を使用して新しい HTML ページのindex.html テンプレート ページを出力することです。 ...