Smarty的保留變量問題

{$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}
  顯示右分隔符

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *