解析CodeIgniter自定义配置文件_PHP教程
程序员文章站
2024-01-06 16:57:52
...
我们有时候在CI框架中需要自定义配置文件,那要怎么处理呢?下面就给你介绍处理的办法。
配置文件config/expert.php
/**
* 专家配置文件
*
* @author xxx
* @version $Id: expert.php v 1.0 2012/5/31 14:41:00 xxx $
* @package ask.xxx.com
* @copyright 1997-2012 www.xxx.com
*/
// 专家ID
$config['expertid'] = array('0' => '124', '1' => '81', '2' => '136');
?>
获取配置数据示例
$this->config->load('expert', TRUE);
$expertid = $this->config->item('expertid', 'expert');
配置文件config/expert.php
复制代码 代码如下:
/**
* 专家配置文件
*
* @author xxx
* @version $Id: expert.php v 1.0 2012/5/31 14:41:00 xxx $
* @package ask.xxx.com
* @copyright 1997-2012 www.xxx.com
*/
// 专家ID
$config['expertid'] = array('0' => '124', '1' => '81', '2' => '136');
?>
获取配置数据示例
$this->config->load('expert', TRUE);
$expertid = $this->config->item('expertid', 'expert');
推荐阅读
-
解析CodeIgniter自定义配置文件_PHP教程
-
查看电脑配置软件 php INI配置文件的解析实现分析
-
CodeIgniter自定义控制器MY_Controller用法分析_PHP
-
php 简单提示框自定义函数_PHP教程
-
解析dedeCMS验证码的实现代码_PHP教程
-
关于session在PHP5的配置文件中的详细设置参数说明_PHP教程
-
解析php addslashes()与add*es()函数的区别和比较_PHP教程
-
php Thinkphp 3.1配置文件相应总结_PHP教程
-
phpmyadmin配置文件现在需要一个短语密码_PHP教程
-
浅谈PHP解析URL函数parse_url和parse_str,parse_urlparse_str_PHP教程