当前位置: 首页 > 编程笔记 >

smarty内置函数config_load用法实例

欧阳学真
2023-03-14
本文向大家介绍smarty内置函数config_load用法实例,包括了smarty内置函数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#}

第二种加载方法,正确。加载相应的段落,引入相应的变量

希望本文所述对大家的php程序设计有所帮助。

 类似资料:
  • 本文向大家介绍smarty内置函数foreach用法实例,包括了smarty内置函数foreach用法实例的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了smarty内置函数foreach用法。分享给大家供大家参考。具体如下: 输出文件:index.php 模板文件:temp.htm 数组的输出方法大致有两种形式: (1)一种是smarty 2的 {foreach from=数组变量名 i

  • 本文向大家介绍smarty内置函数capture用法分析,包括了smarty内置函数capture用法分析的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了smarty内置函数capture用法。分享给大家供大家参考。具体分析如下: {capture}可以捕获标记范围内的输出内容,并存到变量中而不显示。有三种用法, 代码如下: 第一种:{capture}使用name属性; 第二种:{capt

  • 本文向大家介绍smarty内部日期函数html_select_date()用法实例分析,包括了smarty内部日期函数html_select_date()用法实例分析的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了smarty内部日期函数html_select_date()的用法。分享给大家供大家参考。具体如下: 主要属性: prefix         //string类型 默认前缀名为

  • 本文向大家介绍smarty模板引擎之内建函数用法,包括了smarty模板引擎之内建函数用法的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了smarty内建函数的使用方法。分享给大家供大家参考。具体如下: in-build(内建),在smarty模板中,提供了很多内建的函数库,具体使用可以参考smarty中文手册chm版本。 1.foreach函数 操作数组如下: 遍历数组: 其中from、

  • void config_load(string file [, string section]) This loads config file data and assigns it to the template. This works identical to the template config_load function. 加载配置文件,并将其中的数据传送到模板中,它的功能和config

  • Attribute Name Type Required Default Description file string Yes n/a The name of the config file to include section string No n/a The name of the section to load scope string no local How the scope of