Smarty變量用法詳解
來源:易賢網(wǎng) 閱讀:767 次 日期:2016-08-23 15:58:48
溫馨提示:易賢網(wǎng)小編為您整理了“Smarty變量用法詳解”,方便廣大網(wǎng)友查閱!

本文實(shí)例講述了Smarty變量用法。分享給大家供大家參考,具體如下:

1. 從PHP分配的變量

調(diào)用從PHP分配的變量需在前加"$"符號.(譯注:同php一樣)

調(diào)用模板內(nèi)的assign函數(shù)分配的變量也是這樣.(譯注:也是用$加變量名來調(diào)用)

示例:

index.php:

$smarty = new Smarty;

$smarty->assign('firstname', 'Doug');

$smarty->assign('lastLoginDate', 'January11th, 2001');

$smarty->display('index.tpl');

index.tpl:

Hello {$firstname}, glad to see you couldmake it.

<p>

Your last login was on {$lastLoginDate}.

輸出:

Hello Doug, glad to see you could make it.

<p>

Your last login was on January 11th, 2001.

2. 從配置文件讀取的變量

配置文件中的變量需要通過用兩個(gè)"#"或者是smarty的保留變量 $smarty.config.來調(diào)用(后面會講到)

第二種語法在變量作為屬性值并被引號括住的時(shí)候非常有用.

(譯注:舉個(gè)例子 {include file="#includefile#"} 這樣#includefile#將被當(dāng)作字符處理,而不表示配置文件變量,但可以這樣表示{include file="`$smarty.config.includefile`"}不要忘了加``)

示例:

foo.conf:

pageTitle = "This is mine"

bodyBgColor = "#eeeeee"

tableBorderSize = "3"

tableBgColor = "#bbbbbb"

rowBgColor = "#cccccc"

index.tpl:

{config_load file="foo.conf"}

<html>

<title>{#pageTitle#}</title>

<body bgcolor="{#bodyBgColor#}">

<table border="{#tableBorderSize#}" bgcolor="{#tableBgColor#}">

<tr bgcolor="{#rowBgColor#}">

    <td>First</td>

    <td>Last</td>

    <td>Address</td>

</tr>

</table>

</body>

</html>

index.tpl:

{config_load file="foo.conf"}

<html>

<title>{$smarty.config.pageTitle}</title>

<body bgcolor="{$smarty.config.bodyBgColor}">

<table border="{$smarty.config.tableBorderSize}"bgcolor="{$smarty.config.tableBgColor}">

<tr bgcolor="{$smarty.config.rowBgColor}">

    <td>First</td>

    <td>Last</td>

    <td>Address</td>

</tr>

</table>

</body>

</html>

上述兩種模板寫法都輸出:

<html>

<title>This is mine</title>

<body bgcolor="#eeeeee">

<table border="3" bgcolor="#bbbbbb">

<tr bgcolor="#cccccc">

    <td>First</td>

    <td>Last</td>

    <td>Address</td>

</tr>

</table>

</body>

</html>

配置文件的變量只有在它們被加載以后才能使用.

希望本文所述對大家基于smarty模板的PHP程序設(shè)計(jì)有所幫助。

更多信息請查看網(wǎng)絡(luò)編程
易賢網(wǎng)手機(jī)網(wǎng)站地址:Smarty變量用法詳解
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇?zhǔn)!

2025國考·省考課程試聽報(bào)名

  • 報(bào)班類型
  • 姓名
  • 手機(jī)號
  • 驗(yàn)證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 新媒體/短視頻平臺 | 手機(jī)站點(diǎn) | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號
云南網(wǎng)警備案專用圖標(biāo)
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號:hfpxwx
咨詢QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報(bào)警專用圖標(biāo)