php產生html檔案方法總結_PHP

來源:互聯網
上載者:User
關鍵字 php 產生html
我經常會在網上看到有人問怎麼將整個動態網站靜態化,其實實現的方法很簡單。

代碼如下:


<?php
//在你的開始處加入 ob_start();
ob_start();
//以下是你的代碼
//在結尾加入 ob_end_clean(),並把本頁輸出到一個變數中
$temp = ob_get_contents();
ob_end_clean();
//寫入檔案
$fp = fopen(‘檔案名稱','w');
fwrite($fp,$temp) or die(‘寫檔案錯誤');
?>

這隻是最基本的方法,還不是很實用,因為網站是要更新的,要定期重建HTML

下面是我用的方法

代碼如下:


if(file_exists(“xxx.html”))
{
$time = time();
//檔案修改時間和現在時間相差半小時一下的話,直接導向html檔案,否則重建html
if($time - filemtime(“xxx.html”) < 30*60)
{
header(“Location:xxx.html”);
}
}
//在你的開始處加入 ob_start();
ob_start();
//頁面的詳細內容
//在結尾加入 ob_end_clean(),並把本頁輸出到一個變數中
$temp = ob_get_contents();
ob_end_clean();
//寫入檔案
$fp = fopen(‘xxx.html','w');
fwrite($fp,$temp) or die(‘寫檔案錯誤');
//重新導向
header(“Location:xxx.html”);


上面用的快取檔案在大量產生時會出現負載過重,下面我們介紹一種更為高效的方法

以下是輸入內容的提交頁面:
檔案名稱:aa.html

代碼如下:




提交頁面







以下是程式碼片段:
檔案名稱:bb.php

代碼如下:


<?php
//定義日期函數
function getdatetime()
{
$datetime=getdate();
$strReturn=$datetime["year"]."-";
$strReturn=$strReturn.$datetime["mon"]."-";
$strReturn=$strReturn.$datetime["mday"];
return $strReturn;
}
//定義時間函數(檔案名稱)
function gettime()
{
$times=getdate();
$strtime=$times["year"];
$strtime=$strtime.$times["mon"];
$strtime=$strtime.$times["mday"];
$strtime=$strtime.$times["minutes"];
$strtime=$strtime.$times["seconds"];
return $strtime;
}
?>
<?php
//判斷提交值是否為空白
$submit=$_POST["submit"];
//定義檔案頭部資訊
$htmltitle=$_POST["htmltitle"];
//定義檔案內容
$htmlbody=$_POST["htmlbody"];
if ($submit) {
//定義html檔案標籤
$html1=$html1."";
$html1=$html1."";
$html1=$html1."";<br />$html1=$html1.$htmltitle;<br />$html1=$html1."";
$html1=$html1."";
$html1=$html1."";
$html1=$html1."";
$html1=$html1."


";$html1=$html1."
";
$html1=$html1.$htmltitle;
$html1=$html1."
";
$html1=$html1.$htmlbody;
$html1=$html1."
";
$html1=$html1."";
$html1=$html1."";
//判斷今天的檔案夾是否存在
if (!is_dir(getdatetime())) {
//如果不存在就建立
mkdir(getdatetime(),0777);
}
//寫成html檔案
$filedir=getdatetime();
$filename=gettime();
$filename=$filename.".html";
$fp=fopen("$filedir/$filename","w");
fwrite($fp,$html1);
fclose($fp);
echo "";
}
?>

如果提示檔案寫入成功,那你就成功了,然後回到你的相應目錄裡看看有沒有產生靜態html檔案!

smarty模板產生方法

代碼如下:


<?php
require_once("./config/config.php");
ob_start();
$id=$_GET[id];
$sql="select * from table_name where id='$id'";
$result=mysql_query($sql);
$rs=mysql_fetch_object($result);
$smarty->assign("showtitle",$rs->title);
$smarty->assign("showcontent",$rs->content);
$smarty->display("content.html");
$this_my_f= ob_get_contents();
ob_end_clean();
$filename = "$id.html";
tohtmlfile_cjjer($filename,$this_my_f);
// 檔案產生函數
function tohtmlfile_cjjer($file_cjjer_name,$file_cjjer_content){
if (is_file ($file_cjjer_name)){
@unlink ($file_cjjer_name); //存在,就刪除
}
$cjjer_handle = fopen ($file_cjjer_name,"w"); //建立檔案
if (!is_writable ($file_cjjer_name)){ //判斷寫入權限
return false;
}
if (!fwrite ($cjjer_handle,$file_cjjer_content)){
return false;
}
fclose ($cjjer_handle); //關閉指標
return $file_cjjer_name; //返迴文件名
}
?>



smarty中有一個擷取模板頁內容方法fetch(), 它的聲明原形是這樣的:

代碼如下:


<?php
function fetch($resource_name, $cache_id = null,
$compile_id = null, $display = false)
?>


第一個參數為模板名稱, 第二個參數為緩衝的id, 第三個參數為編譯id, 第四個參數為是否顯示模板內容. 產生靜態頁我們就需要用到這個方法.

代碼如下:


<?php
$smarty = new Smarty();
//其它模板替換文法...
//下面這句取得頁面中所有內容, 注意最後一個參數為false
$content = $smarty->fetch('模板名稱.tpl', null, null, false);
//下面將內容寫入至一個靜態檔案
$fp = fopen('news.html', 'w');
fwrite($fp, $content);
fclose($fp);
//OK, 到這裡這個news.html靜態頁就產生了, 你可以處理你下一步的工作了
?>

好了結合上面的方法我們組建檔案幾乎原理都一樣,先把資料讀取出來然後給我們定義好的模板,最後利用fopen函數產生一個.html的檔案

以上幾種php產生html靜態檔案的方法原理上都大同小異,只是在方法上略有不同,都有優缺點,大家根據自己的項目需求,自由選擇吧

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.