Is there any way that we can update the value of config file and save these values into config file.
For example, I have:
$config['base_url'] = 'http://localhost.com';
$config['test'] = '';
I want to change the value of $config['test'] $this->config->set_item('test','something'); and save this value into config file. so, my config file should be
$config['base_url'] = 'http://localhost.com';
$config['test'] = 'something';
Thanks.