我正在尝试在codeigniter 3中加载自定义配置
$this->config->load('test')
test.php文件位于application/config
文件夹中,其中包含以下内容。
<?php
$config['item_test']='sample config item';
我会收到以下错误
配置文件test.php不存在。
Codeigniter版本:3.1.0
答案 0 :(得分:4)
在application / config文件夹中创建新文件名test.php。
应用/配置/ test.php的
<?php
$config['gender'] = array('Male', 'Female');
?>
控制器/ filename.php
class Stackoverflow extends CI_Controller{
function __construct() {
parent::__construct();
$this->config->load('test'); //loading of config file
}
function index(){
print_r($this->config->item('gender')); //Calling of config element.
}
}
输出
数组([0] =&gt;男[1] =&gt;女)