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 *}