How to read an array declared in the application.ini file using zend_config object.

eg 1 : supported.prop[]="abc" supported.prop[]="def"

when I say $config->supported->prop, it returns zend_config object, while I was expecting an array to be returned.

eg 2: supported.prop="abc" This is straightforward though, where you say $config->supported->prop gives string "abc".

So, can someone help me with the eg 1 , where I am trying to read the array with zend_config object.

Thanks

link|improve this question

72% accept rate
feedback

2 Answers

up vote 3 down vote accepted

$config->supported->prop->toArray() will givie you an array.

link|improve this answer
Cool. This is what I was looking for. Thanks – krishna May 31 '11 at 15:16
feedback

Zend_Config implements the Iterator and Countable interfaces, so you can interact with an instance just like you would an array:

foreach ($config->supported->prop as $v){
    echo $v;
}

$count = count($config->supported->prop);
link|improve this answer
I was looking for some sort of straightforward method that does it. Seems like this is the only way. Thanks for the answer – krishna May 30 '11 at 22:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.