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

Smarty中批量生成html的方法

編輯:關於PHP編程

經過一番摸索,終於找到方法,寫出來大家指點一下:
首先在smartt.class.php中為Smarty類添加這麼一個方法:
PHP代碼:
//參數一:html文件保存路徑,參數2:寫入的內容
function MakeHtmlFile($file_name, $c)

      if(!$fp = fopen($file_name, "wa"))
      {    
         echo "文件打開失敗!";    
         return false;    
      }    
      if(!fwrite($fp, $c))
      {    
         echo "文件寫入失敗!";    
         fclose($fp);    
         return false;    
      }            
      fclose($fp);    
   }


問題:我的所有文章都調用的是news.tpl這個模板,那麼究竟如何批量生成呢?

我們先看看news.php
PHP代碼:

<?php
include_once("config.php");
include_once("init.php");
$s->assign("title","所有的新聞分類");
$ID=$_GET["ID"]+0;
$sql="select * from artical where newsID=$ID";
$rs=$db->fetch($sql);
$s->assign("news",$rs["rec"][0]);//注意:$rs["rec"][0]是個數組
$s->display("news.html");
?>


整個模板變量就只有$news,這麼寫有什麼好處呢?我可以以數組的方式讀取內容

那麼究竟如何生成:
看如下代碼:
很簡單的
PHP代碼:

<?php
include_once("config.php");
include_once("init.php");
$sql="select * from artical";
$rs=$db->fetch($sql);
foreach ($rs["rec"] as $k=>$v)
{
$s->assign("news",$v);
$s->MakeHtmlFile("./news/news_".$v[0].".html",$s->fetch("news.html",null, null, false));
}
?>


很簡單把!


PHP代碼:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "[url=http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd]http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd[/url]">
<html xmlns="[url=http://www.w3.org/1999/xhtml]http://www.w3.org/1999/xhtml[/url]">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title><{$news.titles}></title>
<link href="<{$docroot}>/CSS/main.css" rel="stylesheet" type="text/css" />
</head>
<body>
<table width="800" border="0" align="center" cellpadding="0" cellspacing="0" >
  <tr>
    <td height="25" colspan="6" align="center" bgcolor="#eeeeee"><strong><{$news.titles}></strong></td>
  </tr>
  <tr>
    <td width="74" height="25" align="right">作者:</td>
    <td width="220"><{$news.author}></td>
    <td width="40" align="right">時間:</td>
    <td width="134" align="left"><{$news.sj}></td>
    <td width="110" align="right">關鍵詞:</td>
    <td width="220" align="left"><{$news.keyword}></td>
  </tr>
  <tr>
    <td height="25" align="right" >核心提示:</td>
    <td height="25" colspan="5" class="artical" ><{$news.sumary}></td>
  </tr>
  <tr>
    <td height="25" colspan="6" align="left" class="artical" ><{$news.contents}></td>
  </tr>
</table>
</body>
</html>


總結:主要使用smarty的fetch方法,和文件的讀寫操作

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