我正在使用codeigniter框架,我想从config.php访问多维配置变量 例如:
$ config ['user'] ['students'] ['cs'] ='CS USERS';
要访问1维数组,我可以这样做:
$这 - > config->项( '用户')
。
但是我如何访问这个多维配置变量。
的问候,
ABY
答案 0 :(得分:2)
在你的配置中你只需做这样的事情:
$config['test']['one'] = 'one';
$config['test']['two'] = 'two';
$config['test']['three'] = 'three';
你做的是$this->config->item('test');
,你只需得到一个阵列:
Array
(
[one] => one
[two] => two
[three] => three
)