W3Cschool
恭喜您成為首批注冊用戶
獲得88經(jīng)驗值獎勵
{append}
可以在 運行時 為數(shù)組變量增加或者創(chuàng)建值。
這需要考慮的是,對于模板中變量的賦值,最好盡量是放到PHP程序代碼中進(jìn)行。
屬性:
參數(shù)名稱 | 類型 | 必選參數(shù) | 默認(rèn)值 | 說明 |
---|---|---|---|---|
var | string | Yes | n/a | 賦值的變量名稱 |
value | string | Yes | n/a | 賦予的值 |
index | string | No | n/a | 數(shù)組元素的新索引,如果沒有提供此參數(shù),則附加的值會加到數(shù)組最后。 |
scope | string | No | n/a | 賦值變量的訪問范圍: 'parent','root' 或 'global' |
可選的標(biāo)記:
名稱 | 說明 |
---|---|
nocache | 為變量增加'nocache'屬性 |
Example 7.7. {append}
{append var='name' value='Bob' index='first'} {append var='name' value='Meyer' index='last'} // or {append 'name' 'Bob' index='first'} {* short-hand *} {append 'name' 'Meyer' index='last'} {* short-hand *} The first name is {$name.first}.<br> The last name is {$name.last}.
輸出:
The first name is Bob. The last name is Meyer.
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網(wǎng)安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: