問題描述
我正在嘗試設置 Zend Framework 和 Doctrine.
I'm trying to setup Zend Framework and Doctrine.
之前有關于 ZF 1.8 的討論
There is this previous discussion with ZF 1.8
- 將 Doctrine 與 Zend Framework 1.8 應用程序集成莉>
該討論沒有考慮 AutoLoader/Bootstrap 系統.
That discussion doesn't take into account the AutoLoader / Bootstrap System.
如果我使用 ./zh.sh 生成一個應用程序框架,我將如何集成 Doctrine.
If I generate an application skeleton with ./zh.sh how would I go about integrating Doctrine.
推薦答案
找到解決方案
http://pastie.org/481635http://pastie.org/481633
在 application/configs/application.ini 中設置自動加載器和插件路徑:
Setup autoloader and plugin path in application/configs/application.ini:
autoloadernamespaces.0 = "Doctrine"
pluginpaths.ZendX_Doctrine_Application_Resource= "ZendX/Doctrine/Application/Resource"
在 public/index.php 中添加模型和生成模型的路徑
Add paths to models and generated models in public/index.php
set_include_path(implode(PATH_SEPARATOR, array(
realpath(APPLICATION_PATH . '/../library'),
realpath(APPLICATION_PATH . '/models'),
realpath(APPLICATION_PATH . '/models/generated'),
get_include_path(),
)));
將 http://pastie.org/481633 保存到 library/ZendX/Doctrine/Application/Resource/Doctrine.php
Save http://pastie.org/481633 to library/ZendX/Doctrine/Application/Resource/Doctrine.php
這篇關于Zend Framework 1.9 和 Doctrine 集成的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!