smarty模板引擎之設定檔資料和保留資料,smarty模板
本文執行個體講述了smarty模板引擎之設定檔資料和保留資料的方法。分享給大家供大家參考。具體如下:
一、如何讓模板直接從設定檔中取出資料
1.使用場合
當某個變數值,不希望直接寫死到程式中(通過smarty分配),就可以通過設定檔來擷取。
2.寫設定檔
建立檔案夾:config
建立檔案名稱:my.ini或my.config
內容:key=value;
例子:
title="This is the title of the website."bgcolor="pink"
3.使用方法
載入設定檔:{config_laod file="路徑"}
使用設定檔資料:<{#鍵#}>
例子:
{config_laod file="my.config"}...
二、如何獲得保留變數的資料
即,如何取得get/post/session/server資料。這些資料是儲存在數組中的,smarty封裝了方法,可以直接通過smarty變數進行擷取。
1.獲得get資料
傳統方式:先取得get資料,再分配給smarty。但是smarty本身封裝了方法,不用分配,就可以直接獲得get資料。
使用方法如下:
使用者名稱:<{$smarty.get.username}>
密碼:<{$smarty.get.password}>
2.獲得post資料
使用方法如下:
使用者名稱:<{$smarty.post.username}>
密碼:<{$smarty. post.password}>
3.獲得server資料
使用方法如下:
伺服器名稱:<{$smarty.server.SERVER_NAME}>
希望本文所述對大家的php程式設計有所協助。
http://www.bkjia.com/PHPjc/976028.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/976028.htmlTechArticlesmarty模板引擎之設定檔資料和保留資料,smarty模板 本文執行個體講述了smarty模板引擎之設定檔資料和保留資料的方法。分享給大家供大家參...