在 Zend_Framework 中自动加载 Symfony 类
如何在基于 Zend Framework 的应用程序中自动加载 Symfony 类?我可以将某种 Symfony 自动加载器推送到 Zend 的自动加载器吗?
我需要使用一些组件,例如输出转义器或依赖项注入类。
How to autoload Symfony classes in the app based on Zend Framework? Can I push some kind of Symfony autoloader to the Zend's Autoloader?
I need to use some of the components like output escaper or dependency injection classes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Zend 的自动加载器可以接受多个自动加载器:
上面是直接来自手册 并展示了如何包含 ezComponents(现在的 Zeta Components)的自动加载器作为附加加载器。您可以尝试通过提供 Sfs Autoloader 来走这条路。
Zend's autoloader can accept multiple autoloaders:
The above is straight from the manual and shows how to include the autoloader of ezComponents (now Zeta Components) as an additional loader. You can try to go this route by providing Sfs Autoloader.