From Rob's blog:
Zend_Config_Array has been removed
It's no longer necessary as you can do:
require 'config.php';
$config = new Zend_Config($config);
-> http://www.akrabat.com/2006/11/05/zend_config-documentation-in-02/
[06.11.2006 22:15] Stuardo RodrÃguez wrote:
I was using Zend_Config_Array in some projects using ZF 0.1.5, and
now that I want to upgrade to the latest ZF version 0.2 I found
that Zend/Config/Array.php file does not exists. How is the way to
use this kind of files now?
The problem using Zend_Config_Ini and Zend_Config_XML is that the
config file should be outside the document root for security. But
my hostind does not allow this, so I need it to be inside the
document root.
Thanks again!