.zfproject.xml 在 Zend Framework 项目中是必须的吗?

2021-12-29 00:00:00 php zend-framework
  1. .zfproject.xml 在 Zend Framework 项目中是必须的吗?
  2. 它有什么作用?
  3. 它的位置是绝对的吗?

推荐答案

当使用 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.

相关文章