Answers:
同样,Common函数config_item()
在整个CodeIgniter实例中的几乎所有地方都有效。控制器,模型,视图,库,助手,钩子等等。
config_item()
没有提供的碰撞保护$this->config->item()
您可以执行以下操作:
$ci = get_instance(); // CI_Loader instance
$ci->load->config('email');
echo $ci->config->item('name');
echo $this->config->config['ur config file']
如果您的配置文件也显示出来,则您必须像这样访问,例如,我在配置文件夹中包含一个app.php,我有一个变量
$config['50001'] = "your message"
现在,我想访问我的控制器或模型。
尝试以下两种情况之一应该起作用
情况1:
$msg = $this->config->item('ur config file');
echo $msg['50001']; //out put: "your message";
情况2:
$msg = $this->config->item('50001');
echo $msg; //out put: "your message"