思路

用fopen函数和fread函数得到模板,然后用str_replace函数替换模板标签为变量,最后用fwrite函数输出新的html页面

index.html模板页面

<!doctype html public “-//w3c//dtd xhtml 1.0 transitional//en” “http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd”> <html xmlns=””> <head> <meta http-equiv=”content-type” content=”text/html; charset=utf-8″ /> <title>{title}</title> </head>  <body> 文章内容为:{content}  </body> </html> index.php

<?  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”;  $query=mysql_query($sql);   //print_r($arr);  while($arr=mysql_fetch_array($query))   {       $title=$arr[title];       $content=$arr[content];       $file=”index.html”;       $neirong=$arr[id].”.html”;  $fp=fopen($file,’r’);  $ht=fread($fp,filesize($file));  $str=str_replace(‘{title}’,$title,$ht);  $str=str_replace(‘{content}’,$content,$str);  fclose($file);  $file=fopen($neirong,’w’);  $write=fwrite($file,$str);   }   ?> 

 

作者“php学习笔记”