Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to read an array in application.ini in Zend framework

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

like image 983
krishna Avatar asked Dec 16 '22 13:12

krishna


2 Answers

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

like image 114
Arek Jablonski Avatar answered Feb 04 '23 08:02

Arek Jablonski


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);
like image 31
David Weinraub Avatar answered Feb 04 '23 07:02

David Weinraub