smarty内置函数config_load用法实例,smartyconfig_load_PHP教程
程序员文章站
2022-05-05 10:34:21
...
smarty内置函数config_load用法实例,smartyconfig_load
本文实例讲述了smarty内置函数config_load用法。分享给大家供大家参考。具体如下:
{config_load}用于从配置文件中,加载到配置变量。详细用法如下:
配置文件:foo.conf
说明:[Table] 和 [Customer] 表示段落名称。
复制代码 代码如下:
[Table]
pageTitle = "this is mine"
bodyBgColor = "#eee"
tableBorderSize = 3
tableBgColor = "#bbb"
rowBgColor = "#ccc"
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#}
{#pageTitle#}
{#bodyBgColor#}
第一种引入方法:错误。如果配置文件中每个段落都有名称,则必须加上 section="段落名称",才能加载到变量。
复制代码 代码如下:
{config_load file="foo.conf" section="Customer"}
{#pageTitle#}
{config_load file="foo.conf" section="Table"}
{#pageTitle#}
{#pageTitle#}
{config_load file="foo.conf" section="Table"}
{#pageTitle#}
第二种加载方法,正确。加载相应的段落,引入相应的变量。
希望本文所述对大家的php程序设计有所帮助。
下一篇: 微信支付 notify_url 接收不了
推荐阅读
-
smarty内置函数foreach用法实例
-
smarty内置函数{loteral}、{ldelim}和{rdelim}用法实例
-
smarty内置函数config_load用法实例
-
Python内置函数的用法实例教程
-
smarty内置函数{loteral}、{ldelim}和{rdelim}用法实例_PHP
-
smarty内置函数{loteral}、{ldelim}和{rdelim}用法实例
-
smarty内部日期函数html_select_date()用法实例分析,select函数用法_PHP教程
-
smarty内置函数config_load用法实例
-
smarty内置函数foreach用法实例
-
smarty内置函数section的用法,smarty内置section_PHP教程