【发布时间】:2011-07-14 00:49:28
【问题描述】:
所以我刚开始使用 CodeIgniter... 并且卡在设置配置项中
我已经读到替换配置项的值就像这样简单:
$this->config->set_item('item_name', 'item_value');
但是,如果我想设置一个配置项,它是一组配置项的一部分……比如这个:
$api_config = $this->config->load('api'); //loading the created configuration under config folder
api.php
$facebook['app_id'] = '123213213';
$facebook['api_key'] = '123123WERWERWE123123';
$config['facebook'] = $facebook;
我想动态替换 app_id。
【问题讨论】:
标签: codeigniter