How to override config's array within a controller in CodeIgniter?

喜夏-厌秋 提交于 2019-12-06 05:28:17

Unfortunately, by using $this->config->set_item('item_name', 'item_value');, it isn't possible to change a specific array item inside the config value.

You probably have to get the current config value, modify it and set it again:

$this->config->set_item('head_meta', array_merge(
    $this->config->item('head_meta'), array('description' => 'newValue')
));
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!