有没有办法在 Zend Framework 中使用超过 1 个引导类?
这听起来应该是解决方法或类似的东西,但我会告诉你什么:
我选择为每个我可以使用的库建立一个单独的“项目”。它就像一个全局库,我包含了 Zend 库、Doctrine ORM、JQuery、Blueprint CSS 等。然后我设置了包含路径。没什么问题。
问题是:我还想在库文件夹内有一个全局引导类,并在我创建的每个项目上有一个单独的引导类以供个人使用。
我不知道如何设置超过 1 个引导类。是否可以?
It should sound workaround or something like, but I'll tell you what:
I chose to have a separated "project" with every library I could use. It's like a global library which I included Zend library, Doctrine ORM, JQuery, Blueprint CSS, etc. Then I set the include path. Nothing wrong.
The problem is: I'd like to have also a global bootstrap class inside the library folder and an individual bootstrap class on each project I create for individual use.
I don't know how to set more than 1 bootstrap class. Is it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我能想到的最简单的方法是创建自己的基本引导类并扩展它,而不是默认的 Zend 类。所以
你会:
The easiest way i can think of is of make youre own base bootstrap class and extend that instead of the default Zend one. so instead of
you would have: