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.