我有内容
的Config.ini文件[episode]
unlock = false;
我想更改控制器中的值,如
$this->config['episode'] = array('unlock' => true);
或
$this->config->episode->unlock = true;
我在装载程序文件中有这个
$di->set('config', function() use($config){
return $config;
});
答案 0 :(得分:4)
您必须先从DI容器中获取配置,然后您可以根据需要更改值。
$config = $this->di->get('config');
$config['episode'] = array('unlock' => true);
正如评论中所提到的,这是有效的,但没有多大意义,因为新值不会在请求之间持续存在。