How to change the value of a config item in the co

2020-03-24 05:57发布

I have a config file: application/config/breadcrumbs.php

Within the file I have the following configuration item:

$config['hide_number'] = TRUE;

How can I change the value of this config item through the controller.

I need to change the value of this config item one time only. How is this done???

1条回答
叛逆
2楼-- · 2020-03-24 06:11
$this->config->load('breadcrumbs');
$this->config->set_item('hide_number', 'your value');

See the docs for more info:

http://codeigniter.com/user_guide/libraries/config.html

查看更多
登录 后发表回答