程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php生成靜態頁html頁面代碼

php生成靜態頁html頁面代碼

編輯:關於PHP編程

  1. <?php
  2. header(Content-type:text/html;charset=utf-8);
  3. if(!function_exists(file_get_contents)){ //如果系統沒有file_get_contents()函數
  4. function file_get_contents($file){ //自己寫file_get_contents()函數
  5. $fp = fopen($file,r);
  6. $content = fread($fp,filesize($file));
  7. fclose($fp);
  8. return $content;
  9. }
  10. }
  11. $tmp_file = template.html; //模板文件
  12. $content = file_get_contents($tmp_file); //獲得模板文件內容
  13. $title = title; //模板變量title要替換的值
  14. $text = text; //模板變量text要替換的值
  15. $content = str_replace(<{title}>,$title,$content); //替換模板變量title
  16. $content = str_replace(<{text}>,$text,$content); //替換模板變量text
  17. //echo $content; //顯示替換後的模板文件內容
  18. MakeHtml(news.html,$content);//寫入生成後的靜態文件內容到news.html文件
  19. echo <a href="news.html" target="_blank">查看文件</a>;
  20. function MakeHtml($file,$content){
  21. $fp = fopen($file,w);
  22. fwrite($fp,$content);
  23. fclose($fp);
  24. }
  25. ?>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved