config_load的做用是:測試
用於從配置文件中加載變量,屬性file引入配置文件名,另外若配置文件包含多個部分,能夠使用屬性section指定從那部分取得變量(若不指定,將會引入失敗)。it
實例:io
配置中的變量須要經過兩個「#」或者保留變量 $smarty.config.來調用;test
test.tpl變量
{config_load file='color.conf' section='con2'}配置
<div style="{#page_title#}</div>file
color.confsmarty
[con1]
page_title='test'
background_color='red'配置文件
[con2]
page_title='測試'
background_color='blue';di