本文實例講述了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"} <body bgcolor='<{#bgcolor#}>'>...</body>
二、如何獲得保留變量的數據
即,如何取得get/post/session/server數據。這些數據是保存在數組中的,smarty封裝了方法,可以直接通過smarty變量進行獲取。
1.獲得get數據
傳統方式:先取得get數據,再分配給smarty。但是smarty本身封裝了方法,不用分配,就可以直接獲得get數據。
使用方法如下:
用戶名:<{$smarty.get.username}><br/> 密碼:<{$smarty.get.password}><br/>
2.獲得post數據
使用方法如下:
用戶名:<{$smarty.post.username}><br/> 密碼:<{$smarty. post.password}><br/>
3.獲得server數據
使用方法如下:
服務器名稱:<{$smarty.server.SERVER_NAME}>
希望本文所述對大家的php程序設計有所幫助。