學習PHP生成html文件1,下面使用模版的一個方法!
- < ?php
- $fp = fopen ("templets.html","a");
- if ($fp)
- { $fup = fread ($fp,filesize("templets.html"));
- $fp2 = fopen ("html.shtml","w");
- if ($fwrite ($fp2,$fup))
- { $fclose ($fp);
- $fcolse ($fp2);
- die ("寫入模板成功"); }
- else { fclose ($fp);
- die ("寫入模板失敗!");
- }
- }
- ?>
簡單的將模板寫進一個文件中存為html.html
PHP生成html文件2,按時間生成html文件名
- < ?php
- $content = "這是一個以日期時間為文件名
的靜態生成網頁的測試文件,文件名格式一
般為< font color=#ff0000>年月日時分秒
.html< /font>";- $datedate = date('YmdHis');
- $fp = fopen (date('YmdHis') . '.html',"w");
//本函數可用來打開本地或者遠端的文件 'w'
開文件方式為寫入,文件指針指到開始處,
並將原文件的長度設為 0。若文件不存在,則建立新文件。- if (fwrite ($fp,$content)){
//格式是.int fwrite(int fp(文件名),
string string(內容), int [length]
(長度));本函數將字符串 string 寫入文件
資料流的指針 fp 上。若有指定長度 length,
則會寫入指定長度字符串,或是寫到字符串結束。- fclose ($fp);//函數用來關閉已經打開的文
件的指針 fp。成功返回 true,失敗則返回 false。- die ("寫入模板成功");
- }
- else {
- fclose ($fp);
- die ("寫入模板失敗!");
- }
- echo ($content);
- ?>
- < ?php $content = "這是一個以日期時間為文件名
的靜態生成網頁的測試文件,文件名格式一般為- < font color=#ff0000>年月日時分秒.html< /font>";
- $datedate = date('YmdHis');
- $fp = fopen (date('YmdHis') . '.html',"w");
- //本函數可用來打開本地或者遠端的文件 'w'
開文件方式為寫入,文件指針指到開始處,
並將原文件的長度設為 0。若文件不存在,則建立新文件。- if (fwrite ($fp,$content))
- {//格式是.int fwrite(int fp(文件名),
string string(內容), int [length](長度));- 本函數將字符串 string 寫入文件資料流的指針 fp 上。
若有指定長度 length,則會寫入指定長度字符串,
或是寫到字符串結束。 fclose ($fp);- //函數用來關閉已經打開的文件的指針 fp。
成功返回 true,失敗則返回 false。- die ("寫入模板成功"); }
- else { fclose ($fp); die ("寫入模板失敗!");
- }
- echo ($content); ?>
PHP生成html文件3,下面為轉換文件名的一個方法
- < ?php
- $s_fname = "93e.php";
- $o_fname = "93e.htm";
- ob_end_clean();
- ob_start();
- include($s_fname);
- $length = ob_get_length();
- $buffer = ob_get_contents();
- $buffer = eregi_replace("r","",$buffer);
- ob_end_clean();
- $fp = fopen($o_fname,"w+");
- fwrite($fp,$buffer);
- fclose($fp);
- ?>
- < ?php
- $s_fname = "93e.php";
- $o_fname = "93e.htm";
- ob_end_clean(); ob_start();
- include($s_fname);
- $length = ob_get_length();
- $buffer = ob_get_contents();
- $buffer = eregi_replace("r","",$buffer);
ob_end_clean();- $fp = fopen($o_fname,"w+");
fwrite($fp,$buffer); fclose($fp);- ?>
這樣就可以把93e.php轉化為靜態的HTML文件了,要注意的是待轉換的文件裡不能有,ob_end_clean();和 ob_start();語句,且目錄要有寫權限。
以上就是PHP生成html文件的實現方法介紹,僅供大家參考學習。