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 项目中是必须的吗?
基础教程推荐
- 如何替换eregi() 2022-01-01
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01
- 如何在 Laravel 5.3 注册中添加动态下拉列表列? 2021-01-01
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
- 如何在 Laravel 中使用 React Router? 2022-01-01
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
- 在PHP中根据W3C规范Unicode 2022-01-01
