Zend Framework 1.9:如何在没有 MVC 的情况下使用自动加载
当我不使用 MVC 框架时,如何自动加载 zend 框架类?
how do i auto load zend framework classes when i am not using the MVC framework?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Zend 框架的优点在于它非常模块化,您可以使用您想要的任何部分,而无需采用整个框架。
例如,我们可以使用
Zend_Loader_Autoloader
来设置类自动加载,而不必使用Zend_Application
首先确保 Zend 库位于您的包含路径中:
然后需要 Autoloader 类:
然后我们设置自动加载器:
一旦设置了自动加载器(最好是在引导程序或其他东西中),您就可以调用 Zend 框架类(或您自己的应用程序的类),而不必单独要求它们:
阅读有关它的更多信息文档
The nice thing about the Zend framework is that it's extremely modular, you can use just about any piece of it you want without adopting the whole thing.
For example, we can use
Zend_Loader_Autoloader
to set up class auto-loading without having to useZend_Application
First make sure the Zend library is in your include path:
Then require the Autoloader class:
Then we set up the autoloader:
Once the auto-loader is set up (preferably in a bootstrap or something), you can call Zend framework classes (or your own app's classes) without having to require them individually:
Read more about it in the documentation
请参阅:http://us.php.net/manual/en/语言.oop5.autoload.php
See: http://us.php.net/manual/en/language.oop5.autoload.php