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

分析PHP生成html文件的具體代碼示例

編輯:關於PHP編程

學習PHP生成html文件1,下面使用模版的一個方法!

  1. < ?php   
  2. $fp = fopen ("templets.html","a");   
  3. if ($fp){   
  4. $fup = fread ($fp,filesize
    ("templets.html"));   
  5. $fp2 = fopen ("html.shtml","w");   
  6. if ($fwrite ($fp2,$fup)){   
  7. $fclose ($fp);   
  8. $fcolse ($fp2);   
  9. die ("寫入模板成功");   
  10. } else {   
  11. fclose ($fp);   
  12. die ("寫入模板失敗!");   
  13. }   
  14. }   
  15. ?>   
  1. < ?php   
  2. $fp = fopen ("templets.html","a");   
  3. if ($fp)  
  4. { $fup = fread ($fp,filesize("templets.html"));  
  5.  $fp2 = fopen ("html.shtml","w");   
  6. if ($fwrite ($fp2,$fup))  
  7. { $fclose ($fp);   
  8. $fcolse ($fp2);   
  9. die ("寫入模板成功"); }   
  10. else { fclose ($fp);   
  11. die ("寫入模板失敗!");   
  12. }   
  13. }   
  14. ?>  

簡單的將模板寫進一個文件中存為html.html

PHP生成html文件2,按時間生成html文件名

  1. < ?php   
  2. $content = "這是一個以日期時間為文件名
    的靜態生成網頁的測試文件,文件名格式一
    般為< font color=#ff0000>年月日時分秒
    .html< /font>";   
  3. $datedate = date('YmdHis');   
  4. $fp = fopen (date('YmdHis') . '.html',"w");
    //本函數可用來打開本地或者遠端的文件 'w' 
    開文件方式為寫入,文件指針指到開始處,
    並將原文件的長度設為 0。若文件不存在,則建立新文件。   
  5. if (fwrite ($fp,$content)){
    //格式是.int fwrite(int fp(文件名),
     string string(內容), int [length]
    (長度));本函數將字符串 string 寫入文件
    資料流的指針 fp 上。若有指定長度 length,
    則會寫入指定長度字符串,或是寫到字符串結束。   
  6. fclose ($fp);//函數用來關閉已經打開的文
    件的指針 fp。成功返回 true,失敗則返回 false。   
  7. die ("寫入模板成功");   
  8. }   
  9. else {   
  10. fclose ($fp);   
  11. die ("寫入模板失敗!");   
  12. }   
  13. echo ($content);   
  14. ?>  

  1. < ?php $content = "這是一個以日期時間為文件名
    的靜態生成網頁的測試文件,文件名格式一般為
  2. < font color=#ff0000>年月日時分秒.html< /font>";
  3.  $datedate = date('YmdHis'); 
  4. $fp = fopen (date('YmdHis') . '.html',"w");
  5. //本函數可用來打開本地或者遠端的文件 'w' 
    開文件方式為寫入,文件指針指到開始處,
    並將原文件的長度設為 0。若文件不存在,則建立新文件。 
  6. if (fwrite ($fp,$content))
  7. {//格式是.int fwrite(int fp(文件名),
     string string(內容), int [length](長度));
  8. 本函數將字符串 string 寫入文件資料流的指針 fp 上。
    若有指定長度 length,則會寫入指定長度字符串,
    或是寫到字符串結束。 fclose ($fp);
  9. //函數用來關閉已經打開的文件的指針 fp。
    成功返回 true,失敗則返回 false。 
  10. die ("寫入模板成功"); } 
  11. else { fclose ($fp); die ("寫入模板失敗!"); 
  12. echo ($content); ?> 
  13.  

PHP生成html文件3,下面為轉換文件名的一個方法

  1. < ?php   
  2. $s_fname = "93e.php";   
  3. $o_fname = "93e.htm";   
  4. ob_end_clean();   
  5. ob_start();   
  6. include($s_fname);   
  7. $length = ob_get_length();   
  8. $buffer = ob_get_contents();   
  9. $buffer = eregi_replace("r","",$buffer);   
  10. ob_end_clean();   
  11. $fp = fopen($o_fname,"w+");   
  12. fwrite($fp,$buffer);   
  13. fclose($fp);   
  14. ?>  


 

  1. < ?php 
  2. $s_fname = "93e.php"; 
  3. $o_fname = "93e.htm"; 
  4. ob_end_clean(); ob_start(); 
  5. include($s_fname); 
  6. $length = ob_get_length(); 
  7. $buffer = ob_get_contents(); 
  8. $buffer = eregi_replace("r","",$buffer); 
    ob_end_clean(); 
  9. $fp = fopen($o_fname,"w+"); 
    fwrite($fp,$buffer); fclose($fp); 
  10. ?>  

這樣就可以把93e.php轉化為靜態的HTML文件了,要注意的是待轉換的文件裡不能有,ob_end_clean();和 ob_start();語句,且目錄要有寫權限。

以上就是PHP生成html文件的實現方法介紹,僅供大家參考學習。


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