加载application.ini

时间:2010-12-04 23:38:55

标签: zend-framework

我们使用:
- Zend_Controller_Front
- 没有Zend_Application
- 没有Zend_Application_Bootstrap

我们想使用application.ini。

require_once("Zend/Controller/Front.php");

class Forum4Php_Bootstrap {

    protected $_dispatcher;

    public function  __construct() {
        $this->_dispatcher = Zend_Controller_Front::getInstance();
    }

    public function runApp() {
        $this->_dispatcher->addModuleDirectory(FORUM_FOR_PHP_ROOT_DIR."/application/modules");
        $this->_dispatcher->dispatch();
    }
}

有办法吗?

1 个答案:

答案 0 :(得分:5)

您可以将parse_ini_file用作karim79建议或将.ini文件的路径传递给Zend_Config_Ini对象:

$config = new Zend_Config_Ini('/path/to/application.ini', 'development');