Is .zfproject.xml a must in a Zend Framework project?(.zfproject.xml 在 Zend Framework 项目中是必须的吗?)
问题描述
- .zfproject.xml 在 Zend Framework 项目中是必须的吗?
- 它有什么作用?
- 它的位置是绝对的吗?
推荐答案
当使用 Zend_Tool 管理您的 Zend Framework 项目时,.zfproject.xml 将包含您的应用程序结构状态.Zend_Tool(并且只有它)需要这是能够工作的,例如给某些部分添加代码,生成东西等
When using Zend_Tool to manage your Zend Framework project, .zfproject.xml will contain your application structure state. This is required by Zend_Tool (and only by it) to be able to work, e.g. add code to certain parts., generate things, etc.
在 Zend_Tool_Project 上引用 ZF 手册:
Quoting ZF Manual on Zend_Tool_Project:
因此,例如,如果在一个命令中您创建了一个控制器,而在下一个命令中您希望在该控制器中创建一个动作,Zend_Tool_Project 将必须知道您创建的控制器文件,以便您可以(在下一个操作),可以将该操作附加到它.
So, for example, if in one command you created a controller, and in the next command you wish to create an action within that controller, Zend_Tool_Project is gonna have to know about the controller file you created so that you can (in the next action), be able to append that action to it.
我不确定 Zend_Tool 是否可以配置为使用 .zfproject.xml 的不同路径.我的建议是保持原样.无论如何,这是一个隐藏文件.
I am not sure if Zend_Tool can be configured to use a different path to .zfproject.xml. My suggestion would be to leave it untouched. It's a hidden file anyway.
这篇关于.zfproject.xml 在 Zend Framework 项目中是必须的吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:.zfproject.xml 在 Zend Framework 项目中是必须的吗?
- PHP - if 语句中的倒序 2021-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
