index.php
<?php/*//直接在本檔案中配置//庫檔案包含define('SMARTY_DIR','D:/APMServ5.2.6/www/htdocs/smartydemo/smarty/');require(SMARTY_DIR.'smarty.class.php');//配置$smarty = new Smarty;$smarty->compile_dir = SMARTY_DIR.'templates_c/';$smarty->cache_dir = AMARTY_DIR.'cache/';$smarty->template_dir = 'templates/';$smarty->config_dir = 'config/';$this->caching = true;//變數傳值$smarty->assign('name', 'phf');//顯示模板檔案$smarty->display('index.tpl');//$smarty->display('index.tpl', 2);//多份緩衝*//* //取出產生的檔案$file = $smarty->fetch('index.tpl');echo $file;*//*//單個檔案的cache時間設定$smarty->caching = 2; // lifetime is per cache$smarty->cache_lifetime = 300;$smarty->display('index.tpl');*/// 實初化配置的進一步類封裝require_once('smartydemo.class.php');$smarty = new Smarty_demo;$smarty->assign('name', 'phf');//$smarty->display('index.tpl');$smarty->display('index.tpl', 2);
smartydemo.class.php
<?php//define('SMARTY_DIR','D:/APMServ5.2.6/www/htdocs/smartydemo/smarty/');require(SMARTY_DIR.'smarty.class.php');class Smarty_demo extends Smarty{function __construct(){Smarty::__construct();$this->compile_dir = SMARTY_DIR.'templates_c/';$this->cache_dir = SMARTY_DIR.'cache/';$this->template_dir = 'templates/';$this->config_dir = 'config/';$this->caching = true;$this->cache_lifetime = 1;$this->assign('app_name','smartydemo');}}
index.tpl
{* smarty *}<h1>{$app_name}</h1>hello {$name}!;