bootstrap 与 application.ini 中的 Zend 自动加载配置
给定:
1.
bootstrap:
$autoloader = Zend_Loader_Autoloader::getInstance();// Zend_Loader_Autoloader
$autoloader->registerNamespace('Ntk_');
等于
application.ini:
autoloaderNamespaces[] = "Ntk_"
2.
bootstrap:
$pluginLoader = $this->getPluginLoader();// Zend_Loader_PluginLoader
$pluginLoader->addPrefixPath('My_Resource', APPLICATION_PATH . "/appResourcePlugins");
等于
application.ini:
pluginPaths.My_Resource = APPLICATION_PATH "/appResourcePlugins"
3.
bootstrap:
$moduleAutoloader = $this>getResourceLoader();//Zend_Application_Module_Autoloader
$moduleAutoloader->addResourceType('need', 'needs', 'Needs');
等于
application.ini:
???
配置 Zend_Application_Module_Autoloader 的 application.ini 方法是什么?
(...如果存在的话)
我使用 zend 框架版本 1.11.10
Given:
1.
bootstrap:
$autoloader = Zend_Loader_Autoloader::getInstance();// Zend_Loader_Autoloader
$autoloader->registerNamespace('Ntk_');
equals to
application.ini:
autoloaderNamespaces[] = "Ntk_"
2.
bootstrap:
$pluginLoader = $this->getPluginLoader();// Zend_Loader_PluginLoader
$pluginLoader->addPrefixPath('My_Resource', APPLICATION_PATH . "/appResourcePlugins");
equals to
application.ini:
pluginPaths.My_Resource = APPLICATION_PATH "/appResourcePlugins"
3.
bootstrap:
$moduleAutoloader = $this>getResourceLoader();//Zend_Application_Module_Autoloader
$moduleAutoloader->addResourceType('need', 'needs', 'Needs');
equals to
application.ini:
???
What is the application.ini method for configuring Zend_Application_Module_Autoloader ?
(...if it exists)
I use zend framework version 1.11.10
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许这个例子会对您有所帮助:
这是application.ini
参考:有人有同样的问题并在这里得到了答案
Maybe this example will help you:
Here is application.ini
Reference:someone had the same question and got his answer here