I am using codeigniter framework and I want to access a multidimensional config variable from config.php.
For Example:
$config[‘user’][‘students’][‘cs’] = ‘CS USERS’;
To access 1-dimensional array i can do like this:
$this->config->item(‘user’).
But how can i access this multidimensional config variable.
Regards,
Aby
In you config you just do something like this:
And whey you do
$this->config->item('test');you just get an array which is: