怎樣用PHP生成html檔案

2021-09-30 02:05:05 字數 1117 閱讀 1625

怎樣用php生成html檔案

2004-06-27       摘自:

怎樣用php生成html檔案?

總結一

貼子發出後,得到網友們的熱烈響應和幫助,為回報各位村民,特把有效回貼整理出

1,matrix@two_max的發貼:

<?php

$fp = fopen ("templets.html","a");

if ($fp) else

}

?>

簡單的將模板寫進乙個檔案中存為html.html

2,matrix@two_max的發貼:

這是模板檔案,你需要在伺服器上提供templets.html這樣乙個模板檔案

沒有模板談何生成?

當然,你也可以這樣生成乙個靜態頁面。只是少了一步開啟模板,替換內容的過程

<?php

$content = "這是乙個靜態生成網頁的測試檔案,檔名為html.html";

$fp = fopen ("html.shtml","w");

if (fwrite ($fp,$content)) else

?>

3,rebol的發貼:

<?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();語句。

且目錄要有寫許可權。

怎樣用Python生成詞云

1.首先得安裝詞云的模組 安裝wordcloud模組 開啟cmd 命令視窗 輸入 pip install wordcloud 2.其次再應用前導入模組 from wordcloud import wordcloud,imagecolorgenerator以下就是python顯示詞云的 def wor...

怎樣用UDP通迅

using system using system.data using system.net using system.net.sockets using system.collections using system.text using system.threading using syste...

怎樣用LINQ或EF生成NOT IN和IN語句

例如 有乙個問卷表questionnaire和乙個活動與問卷的關係表activityoption questionnaire,現在我們要找出不在活動中的問卷。用lambda實現方法如下 var notin db.questionnaires.where a db.activityoption que...