smarty 基本配置以及常見語句

使用smarty 將 libs 目錄複製到項目目錄。

 

基本配置

<?php
iclude "./libs/Smarty.class.php";

$tpl = new Smarty();

// 模板文件目錄
$tpl -> temlate_dir = 'templates/';
// 編譯目錄
$tpl -> compile_dir = 'templates_c/';
// 配置文件目錄
$tpl -> config_dr = 'config/';
// 緩存目錄
$tpl -> cache_dir = 'cache/';
// 開啓緩存
$tpl -> caching = 1;
// 設置緩存有效期
$tpl -> cache_lifetime = 60 * 60 * 24;
$tpl -> left_delimiter = '<{';
$tpl -> right_delimiter = '}>';

?>


擴展配置

 

<?php
require 'libs/Smarty.class.php';
class SmartySetup extends Smarty {
	const SMARTY_ROOT = './tpls';
	public function __construct() {
		parent :: __construct();
		$this -> template_dir = self :: SMARTY_ROOT . '/templates/';
		$this -> compile_dir = self :: SMARTY_ROOT . '/templates_c/';
		$this -> config_dir = self :: SMARTY_ROOT . '/config/';
	}
}
?>


index.php

<?php
require 'setup.php';

$tpl = new SmartySetup();

$tpl -> display('index.tpl');

?>


 

只需要導入 SmartySetup 並實例化一個對象即可完成配置

 

smarty的語句

 

發佈了41 篇原創文章 · 獲贊 1 · 訪問量 6萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章