本文實例講述了smarty內置函數config_load用法。分享給大家供大家參考。具體如下:
{config_load}用於從配置文件中,加載到配置變量。詳細用法如下:
配置文件:foo.conf
說明:[Table] 和 [Customer] 表示段落名稱。
復制代碼 代碼如下:[Table]
pageTitle = "this is mine"
bodyBgColor = "#eee"
tableBorderSize = 3
tableBgColor = "#bbb"
rowBgColor = "#ccc"
[Customer]
pageTitle = "Customer Info"
模板文件:temp.htm
復制代碼 代碼如下:{config_load file="foo.conf"}
{#pageTitle#}
{#bodyBgColor#}
第一種引入方法:錯誤。如果配置文件中每個段落都有名稱,則必須加上 section="段落名稱",才能加載到變量。
復制代碼 代碼如下:{config_load file="foo.conf" section="Customer"}
{#pageTitle#}
{config_load file="foo.conf" section="Table"}
{#pageTitle#}
第二種加載方法,正確。加載相應的段落,引入相應的變量。
希望本文所述對大家的php程序設計有所幫助。