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自定義函數
自定義函數
assign
counter
cycle
debug
eval
fetch
html_checkboxes
html_image
html_options
html_radios
html_select_date
html_select_time
html_table
math
mailto
popup_init
popup
textformat
用戶可以使用 Smarty 自帶的一組自定義函數.
assign
Attribute Name
Type
Required
Default
描述
var
string
Yes
n/a
The name of the variable being assigned
value
string
Yes
n/a
The value being assigned
屬性
類型
是否必須
缺省值
描述
var
string
Yes
n/a
被賦值的變量名
value
string
Yes
n/a
賦給變量的值
assign 用於在模板被執行時爲模板變量賦值.
Example 8-1. assign
例 8-1. assign 函數演示
{assign var="name" value="Bob"}
The value of $name is {$name}.
OUTPUT:
The value of $name is Bob.