如何在codeigniter中为config变量添加参数?

时间:2015-12-16 12:12:41

标签: php codeigniter parameters config

我是php新手,并尝试将参数添加到配置变量。在我的示例中,我在配置文件中定义成功/错误消息。我可以使用:

访问配置变量
$this->config->item('msg') 

但是我想在消息中添加参数并使用:

传递它
 $this->config->item 

我该怎么做?

非常感谢任何帮助。

2 个答案:

答案 0 :(得分:1)

$this->config->item()效果很好。

例如,如果使用$config['foo'] = 'bar';的配置中的$this->config->item('foo')将是' bar'

答案 1 :(得分:1)

https://ellislab.com/codeigniter/user-guide/libraries/config.html

After dynamically setting my config variable in codeigniter how to access them from other controllers and models?

$this->config->set_item('item_name', 'item_value');

例如

$this->config->set_item('msg', 'Your Value goes here');

你可以这样打印

echo $this->config->item('msg');