Config Files for more info.
该函数用于从配置文件中加载变量. 更多信息请查看 配置文件.
Example 7-2. function config_load
例 7-2.演示 config_load 函数
{config_load file="colors.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>
|
|
Config files may also contain sections. You can load variables from within a
section with the added attribute
section
.
配置文件有可能包含多个部分,此时可以使用附加属性 section 指定从哪一部分中取得变量.
NOTE:
Config file sections
and the built-in template function called
section
have nothing to do with each other, they just happen to share a common naming
convention.
注意:配置文件中的 section 和模板内建函数 section 只是命名相同,毫不相干。
Example 7-3. function config_load with section
例 7-3. 带 section 属性的 config_load 函数演示
{config_load file="colors.conf" section="Customer"}
<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>
|
|