如何将 Zend_Loader 从 1.7 升级到 1.8?
我一直在用这个,在1.7中工作正常,但在1.8中不行。
require_once('Zend/Loader.php');
Zend_Loader::registerAutoload();
它说它已被弃用,我应该使用 Zend_Loader_Autoloader 代替,但我似乎无法让它工作。 有什么建议么?
I have been using this, and it works fine in 1.7, but not in 1.8.
require_once('Zend/Loader.php');
Zend_Loader::registerAutoload();
It says it's deprecated, and that I should use Zend_Loader_Autoloader instead, but I can't seem to get it to work. Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
至少,您需要将代码更改为
如果您有一些未命名空间的代码(例如模型),您也需要这样做:
更多详细信息请参见 http://akrabat.com/2009/04/30/zend_loaders-autoloader_deprecated-in-zend-framework-18 /
As a bare minimum you'll need to change the code to
If you have some code that is not namespaced, like models, you'll need this too:
More details at http://akrabat.com/2009/04/30/zend_loaders-autoloader_deprecated-in-zend-framework-18/