主頁 > 知識庫 > smarty模板的使用方法實例分析

smarty模板的使用方法實例分析

熱門標(biāo)簽:廣州防封卡外呼系統(tǒng)多少錢一個月 哪里辦理400電話 高德地圖標(biāo)注家 外呼系統(tǒng)撥打暫時無法接通 廣東地市地圖標(biāo)注 怎么向銷售公司推銷外呼系統(tǒng) 仁和怎么申請400開頭的電話 江西手機自動外呼防封系統(tǒng)是什么 長春人工外呼系統(tǒng)服務(wù)商

本文實例講述了smarty模板的使用方法。分享給大家供大家參考,具體如下:

這里以smarty3為例

首先, 在官網(wǎng)下載smarty3模板文件,然后解壓。

在解壓之后的文件夾中,libs是smarty模板的核心文件,demo里面有示例程序。

我們把libs文件夾復(fù)制到我們的工作目錄,然后重命名為smarty。

假設(shè)我們在controller目錄下的index.php中使用smarty模板。

index.php

?php
require '../smarty/Smarty.class.php';
$smarty = new Smarty;
$smarty->debugging = false;  //開啟debug模式
$smarty->caching = true;  //開啟緩存
$smarty->cache_lifetime = 120; //緩存時間
$smarty->left_delimiter = '{';  //左定界符
$smarty->right_delimiter = '}>';  //右定界符
$smarty->template_dir = __DIR__.'/../view/';  //視圖目錄
$smarty->compile_dir = __DIR__ . '/../smarty/compile/';  //編譯目錄
$smarty->config_dir = __DIR__ . '/../smarty/configs/'; //配置目錄
$smarty->cache_dir = __DIR__ . '/../smarty/cache/';  //緩存目錄
$list = range('A', 'D');
$smarty->assign("list", $list);
$smarty->assign("name", "zhezhao");
$smarty->display('index.html');

模板文件index.html

html>
head>
  title>/title>
/head>
body>
  p>h1>{$name}>/h1>/p>
  {foreach $list as $k=>$v }>
    p>h1>{$k}> : {$v}>/h1>/p>
  {/foreach}>
/body>
/html>

上述方法的優(yōu)點是使用起來配置比較簡單,缺點也是顯而易見的,我們controller目錄下可能有很多頁面調(diào)用smarty模板,在每個頁面都需要將上述方法配置一遍。

解決方法有兩種:

將smarty模板的配置信息寫到一個文件中,然后其他頁面可以通過包含該文件使用smarty對象。

require '../smarty/Smarty.class.php';
$smarty = new Smarty;
$smarty->debugging = false;  //開啟debug模式
$smarty->caching = true;  //開啟緩存
$smarty->cache_lifetime = 120; //緩存時間
$smarty->left_delimiter = '{';  //左定界符
$smarty->right_delimiter = '}>';  //右定界符
$smarty->template_dir = __DIR__.'/../view/';  //視圖目錄
$smarty->compile_dir = __DIR__ . '/../smarty/compile/';  //編譯目錄
$smarty->config_dir = __DIR__ . '/../smarty/configs/'; //配置目錄
$smarty->cache_dir = __DIR__ . '/../smarty/cache/';  //緩存目錄

我們自己編寫一個類,繼承自Smarty類,然后將配置信息寫在構(gòu)造函數(shù)中。

我們編寫mySmarty類

?php
require '../smarty/Smarty.class.php';
class mySmarty extends Smarty{
  public function __construct(array $options = array()){
    parent::__construct($options);
    $this->debugging = false; //開啟debug模式
    $this->caching = true; //開啟緩存
    $this->cache_lifetime = 120;  //緩存時間
    $this->left_delimiter = '{'; //左定界符
    $this->right_delimiter = '}>'; //右定界符
    $this->setTemplateDir(__DIR__.'/../view/');  //視圖目錄
    $this->setCompileDir(__DIR__ . '/../smarty/compile/'); //編譯目錄
    $this->setConfigDir(__DIR__ . '/../smarty/configs/'); //配置目錄
    $this->setCacheDir(__DIR__ . '/../smarty/cache/'); //緩存目錄
  }
}

此時,controller里面的index.php代碼可優(yōu)化為:

?php
require 'mySmarty.php';
$smarty = new mySmarty;
$list = range('A', 'D');
$smarty->assign("list", $list);
$smarty->assign("name", "zhezhao");
$smarty->display('index.html');

最后送上福利:smarty3 chm官方文檔。

更多關(guān)于Smarty相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《smarty模板入門基礎(chǔ)教程》、《PHP模板技術(shù)總結(jié)》、《PHP基于pdo操作數(shù)據(jù)庫技巧總結(jié)》、《PHP運算與運算符用法總結(jié)》、《PHP網(wǎng)絡(luò)編程技巧總結(jié)》、《PHP基本語法入門教程》、《php面向?qū)ο蟪绦蛟O(shè)計入門教程》、《php字符串(string)用法總結(jié)》、《php+mysql數(shù)據(jù)庫操作入門教程》及《php常見數(shù)據(jù)庫操作技巧匯總》

希望本文所述對大家基于smarty模板的PHP程序設(shè)計有所幫助。

您可能感興趣的文章:
  • Smarty模板快速入門
  • 在smarty模板中使用PHP函數(shù)的方法
  • 模板引擎smarty工作原理以及使用示例
  • 解析smarty模板中類似for的功能實現(xiàn)
  • smarty模板中使用get、post、request、cookies、session變量的方法
  • PHP模板引擎Smarty的緩存使用總結(jié)
  • PHP模板引擎smarty詳細介紹
  • smarty模板引擎中內(nèi)建函數(shù)if、elseif和else的使用方法
  • smarty模板引擎中自定義函數(shù)的方法
  • php之Smarty模板使用方法示例詳解
  • php Smarty模板生成html文檔的方法
  • PHP 基于Yii框架中使用smarty模板的方法詳解

標(biāo)簽:湘西 廈門 梅河口 海北 黔東 文山 惠州 濮陽

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《smarty模板的使用方法實例分析》,本文關(guān)鍵詞  smarty,模板,的,使用方法,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《smarty模板的使用方法實例分析》相關(guān)的同類信息!
  • 本頁收集關(guān)于smarty模板的使用方法實例分析的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章