How to change the value of a config item in the controller? - Codeigniter

后端 未结 1 1029
醉酒成梦
醉酒成梦 2021-01-13 16:23

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

Within the file I have the following configuration item:

$config[\'hide_number\         


        
1条回答
  •  -上瘾入骨i
    2021-01-13 16:45

    $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

    0 讨论(0)
提交回复
热议问题