Zend Framework 1.9 and Doctrine Integration(Zend Framework 1.9 和 Doctrine 集成)
问题描述
我正在尝试设置 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 集成的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Zend Framework 1.9 和 Doctrine 集成
基础教程推荐
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01