Smarty教學
Smarty安裝
Smarty擴展設置
Smarty註釋代碼
Smarty函數
Smarty屬性
Smarty雙引號裏值的嵌入
Smarty數學運算
Smarty變量
Smarty從配置文件讀取的變量
Smarty變量調節器
Smarty組合修改器
Smarty foreach,foreachelse
Smarty include
Smarty include_php
Smarty insert
Smarty if,elseif,else
Smarty literal
Smarty section,sectionelse
Smarty自定義函數
Smarty assign用法
Smarty配置文件
Smarty調試控制檯
Smarty方法
Smarty display方法
Smarty fetch方法
Smarty Caching緩存
Smarty 建立緩存
Smarty多個緩存
Smarty緩存集合
Smarty控制插件輸出緩衝
Smarty對象
Smarty預過濾器
Smarty輸出濾鏡
Smarty緩衝處理函數
Smarty註釋代碼
所有的smarty模板標籤都被加上了定界符.
默認情況下是 { 和},但它們是可被改變的.
例如,我們假定你在使用默認定界符.
在smarty裏,所有定界符以外的內容都是靜態輸出的,或者稱之爲不可改變.
當smarty遇到了模板標籤,將嘗試解釋他們,然後再以恰當的方式輸出 .
Comments[註釋]
模板註釋被*號包圍,例如 {* this is a comment *}
smarty註釋不會在模板文件的最後輸出中出現.
它只是模板內在的註釋.
例 3-1.註釋
{* Smarty *}
{* include the header file here *}
{include file="header.tpl"}
{include file=$includeFile}
{include file=#includeFile#}
{* display dropdown lists *}