我们使用:
- 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();
}
}
有办法吗?
答案 0 :(得分:5)
您可以将parse_ini_file
用作karim79建议或将.ini文件的路径传递给Zend_Config_Ini
对象:
$config = new Zend_Config_Ini('/path/to/application.ini', 'development');