Smarty函式


函式

每一個smarty標籤輸出一個變數或者呼叫某種函式.
在定界符內 函式(用'{'包住)和其屬性(用界符包住)將被處理和輸出.例如: 
{funcname attr1="val" attr2="val"}.

例 3-2.函式語法

{config_load file="colors.conf"}

{include file="header.tpl"}

{if $highlight_name}
	Welcome, <font color="{#fontColor#}">{$name}!</font>	
{else}
	Welcome, {$name}!
{/if}

{include file="footer.tpl"}

 

在模板裡無論是內建函式還是自定義函式都有相同的語法.
內建函式將在smarty內部工作,例如 {if} {section} and {strip} .他們不能被修改.
自定義函式通過外掛機制起作用,它們是附加函式. 只要你喜歡,可以隨意修改.你也可以自行新增.
例如 {html_options}  {html_select_date}