ZF-2285: Allow Zend_Config_Xml to support multiple values of the same name as an array
Description
Support XML config files like:
......
so that the $config representation is:
$subject1 = $config->emailList->{0};
$subject2 = $config->emailList->{1};
Comments
Posted by Rob Allen (rob) on 2007-12-08T03:45:22.000+0000
Proposed patch by Simon Mundy:
Posted by Rob Allen (rob) on 2007-12-08T04:25:55.000+0000
Fixed in SVN 7066 (trunk) and 7067 (release-1.0).
Final code is essentially the same as Simon's. Thanks Simon!