位置:首頁 > 框架 > 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 *}
<SELECT name=company>
{html_options values=$vals selected=$selected output=$output}
</SELECT>