我custom.php(config文件夾內),如下面笨 - 與代碼中使用內部CI配置文件自定義配置值
$config['myurl'] = 'somesite.com';
我的config.php(標準CI),我想設置BASE_URL利用custom.php值,這樣
$config['base_url'] = $this->config->item('myurl');
這樣做,我得到了錯誤
Using $this when not in object context in /Volumes/HD 2/work/vnl/app/config/config.php on line 18
請告訴我爲此目的的正確的代碼?