smarty内置函数config_load用法实例
发布:smiling 来源: PHP粉丝网 添加日期:2021-05-08 21:47:42 浏览: 评论:0
这篇文章主要介绍了smarty内置函数config_load用法,实例分析了{config_load}配置变量的使用技巧,需要的朋友可以参考下
本文实例讲述了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#}
第二种加载方法,正确。加载相应的段落,引入相应的变量。
Tags: smarty内置函数 config_load
相关文章
- ·smarty内置函数section的用法(2021-05-08)
- ·smarty内置函数foreach用法实例(2021-05-08)
- ·smarty内置函数capture用法分析(2021-05-08)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)