程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> Discuz 模板引擎的封裝類代碼

Discuz 模板引擎的封裝類代碼

編輯:PHP綜合

主要功能說明

去掉了 Discuz 語言包的功能 
移植 Discuz 模板中所有的功能 
添加了自動更新緩存及生命周期功能 
在模板中的使用方法跟Discuz的一樣,所以就不做多余的說明了,使用前只需要做些簡單的設置就可以了

如果需要使用discuz的語言包功能,只要去掉template.class.php第172行注釋,並在template.func.php中加上discuz原來的languagevar函數就可以了

點擊下載源文件

以下是代碼范例:

/**
* 使用示例
*
* @copyright Copyright (c) 2007-2008 (http://www.tblog.com.cn)
* @author Akon(番茄紅了)
* @license PHP Version 3.0 {@link http://www.php.net/license/3_0.txt}
*/

require_once ('classes/template.class.php');

$options = array(
    template_dir' => 'templates/', //指定模板文件存放目錄
    'cache_dir' => 'templates/cache', //指定緩存文件存放目錄
    'auto_update' => true, //當模板文件有改動時重新生成緩存 [關閉該項會快一些]
    'cache_lifetime' => 1, //緩存生命周期(分鐘),為 0 表示永久 [設置為 0 會快一些]
);
$template = Template::getInstance(); //使用單件模式實例化模板類
$template->setOptions($options); //設置模板參數

/*
// 可以使用以下三種方法設置參數
$template->setOptions(array('template_dir' => 'templates/default/')); //用於批量設置時使用
$template->set('template_dir', 'templates/default/');
$template->template_dir = 'templates/default/');
*/

$testArr = array('testa' => 'a', 'testb' => 'b');
include($template->getfile('test.htm'));
?>
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved