Home > Backend Development > PHP Tutorial > CI自定义配置文件问题?

CI自定义配置文件问题?

WBOY
Release: 2016-06-06 20:15:27
Original
1182 people have browsed it

最近项目需要用到自定义配置文件,类似于这样的,但是我用$this->config->load()加载后却报错Your D:\wamp\www\test\application\config/alipay.php file does not appear to contain a valid configuration array.于是将自定义下的配置文件里的数组名都改为config后,成功!,错误消失,CI不可以自定义配置数组名么???CI自定义配置文件问题?

回复内容:

最近项目需要用到自定义配置文件,类似于这样的,但是我用$this->config->load()加载后却报错Your D:\wamp\www\test\application\config/alipay.php file does not appear to contain a valid configuration array.于是将自定义下的配置文件里的数组名都改为config后,成功!,错误消失,CI不可以自定义配置数组名么???CI自定义配置文件问题?

这种事嘛就要看手册:
配置类 — CodeIgniter 3.0.0 中文手册|用户手册|用户指南|中文文档 http://codeigniter.org.cn/user_guide/libraries/config.html
中间明确写了:
如果你要创建你自己的配置文件,使用和主配置文件相同的格式,将配置项保存到名为 $config 的数组中。 CodeIgniter 会智能的管理这些文件,所以就算数组名都一样也不会冲突(假设数组的索引没有相同的)。

文档,文档,可以自定义名字

不可以,除非深度改CI源码,这样会得不偿失,$config数组键名,键值对应是配置名和配置项。这个已经能解决一切配置问题。

$config 这个不能改,不过我感觉没有改的必要吧,用 key 做区分就好了,一个项目能有多少配置啊,建议还是使用约定胜于配置的方式开发项目。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template