{$smarty}保留變數可以用來存取一些特殊的範本變量,以下是全部頁面請求變數。
以下是存取頁面請求變數諸如get,post,cookies,server,enviroment和session變數的範例. 例如{$smarty.server.SERVER_NAME}取得伺服器變量,{$smarty.env.PATH}取得系統環境變數path, { $smarty.request.username}取得get/post/cookies/server/env的複合變數。
{$smarty.now}變數用於存取當前時間戳記.
可以用date_format調節器格式化輸出. 例如{$smarty.now|date_format:"%Y-%m-%d %H:%M:%S"}
{$smarty.const}
你可以直接存取PHP常數. 例如{$smarty.const._MY_CONST_VAL}
{$smarty.capture}
可以透過{capture}..{/capture}結構截取的輸出可以使用{$smarty} 變數來存取.
{$smarty.config}
{$smarty}變數可以存取已經載入的config變數.
例如{$smarty.config.foo}就可以表示{#foo#}.
{$smarty.section}, {$smarty.foreach}
{$smarty} 變數可以存取'section'和'foreach'循環的屬性.
{$smarty.template}
顯示目前被處理的範本的名字.
{$smarty.version}
顯示smarty模板的版本{$smarty.ldelim}
顯示左分隔符號{$smarty.rdelim}
顯示右分隔符