以下是存取頁面請求變數諸如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}
顯示右邊分隔符
以上就介紹了 php smarty的預保留變數總結,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。