当前位置:首页 > PHP教程 > Smarty > 列表

smarty模板引擎从配置文件中获取数据的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-08 21:59:01 浏览: 评论:0 

这篇文章主要介绍了smarty模板引擎从配置文件中获取数据的方法,涉及config_load载入配置文件及相关的读取技巧,需要的朋友可以参考下

本文实例讲述了smarty模板引擎从配置文件中获取数据的方法。分享给大家供大家参考。具体如下:

当某个变量值,不希望在程序中写死时,就可以把该变量写到配置文件里,并从中获取(常见的配置样式)。

第一步:先写一个配置文件,如数据库的 db.conf,后缀名conf可以随便写,db.ini也行。文件中内容的格式需要固定:key="值",每一行后面不需要添加分号或者什么,直接回国换行,如:

配置文件:db.conf 代码如下:

host = "localhost"

username = "root"

password = "123456"

db_name = "liuyan"

模板文件:temp.tpl

使用{config_load file="db.conf"} 将文件引入进来。注意,如果写相对路径的话,要以访问的页面来看。比如这里,temp.tpl放在templates目录下,db.conf是放在与templates目录同一层,但由于浏览器访问的文件index.php与db.conf同一层,所以,引用时,直接写 {config_load file="db.conf"} ,代码如下:

  1. {config_load file="db.conf"
  2. <html> 
  3. <h2>smarty变量操作,从配置文件中获取</h2> 
  4. <p style="color:green;">{#host#}</p> 
  5. <p style="color:red;">{#username#}</p> 
  6. </html> 

浏览器访问:index.php

与从php获取变量数据不同,这里不需要用assign分配,而在模板文件里直接加载,代码如下:

  1. <?php 
  2. //创建smarty对象 
  3. require_once("./libs/Smarty.class.php"); 
  4. $smarty = new Smarty(); 
  5. $smarty->display("index.tpl"); 
  6. ?>

Tags: smarty模板引擎 smarty配置文件

分享到: