如何在 application.ini 中配置 AutoLoader 的默认命名空间和模型位置?
使用 PHP 5.3 和 Zend Framework 1.11.7 我一直在尝试配置 AutoLoader 以自动加载驻留在默认目录 application/models 中的模型类(对于 Zend_Db)。
我找到了以下解决方案:
我可以将以下函数添加到 Bootstrap.php:
protected function _initLoader()
{
$loader = new Zend_Loader_Autoloader_Resource (array (
'basePath' => APPLICATION_PATH,
'namespace' => 'Default'));
$loader -> addResourceType ( 'model', 'models', 'Model');
}
这似乎是一个应该在 application.ini 中轻松设置的选项。所以我的问题是,是否有任何相关指令可以添加到 application.ini 来执行我的函数执行的相同任务?
设置 appnamespace 指令后更新
,我仍然需要添加以下函数:
protected function _initLoader()
{
$loader = new Zend_Loader_Autoloader_Resource (array (
'basePath' => APPLICATION_PATH));
$loader -> addResourceType ( 'model', 'models', 'Model');
}
否则它将找不到我的模型类。
唯一的区别是我删除了属性“命名空间”。
我可以添加任何其他属性来完全删除此功能吗?
谢谢你! :)
幼狮
Using PHP 5.3 and Zend Framework 1.11.7 I've been trying to configure the AutoLoader to auto load my Model classes (for Zend_Db) that resides in the default directory application/models.
I found the following solution:
I can add the following function to the Bootstrap.php:
protected function _initLoader()
{
$loader = new Zend_Loader_Autoloader_Resource (array (
'basePath' => APPLICATION_PATH,
'namespace' => 'Default'));
$loader -> addResourceType ( 'model', 'models', 'Model');
}
it seems like an option that should be easily set in application.ini. so my question is, are there any relevant directives that I can add to application.ini that perform the same task my function performs ?
update
after setting the appnamespace directive, i still need to add the following function:
protected function _initLoader()
{
$loader = new Zend_Loader_Autoloader_Resource (array (
'basePath' => APPLICATION_PATH));
$loader -> addResourceType ( 'model', 'models', 'Model');
}
or else it won't find my model classes.
the only difference is that I removed the attribute 'namespace'.
any other attributes i can add to remove this function entirely ?
thank you! :)
Kfir
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在您的 application.ini 中,您应该设置
应用程序命名空间是您用于模型的前缀,因此如果您的模型是“Default_Model_User”,那么应用程序命名空间将是“默认”,如果您的模型是“Application_Model_User”,那么应用程序命名空间将是“application "
这两个指令应该解决默认应用程序的自动加载问题。
您也可以在引导程序中设置它,您需要使用 Zend_Application_Module_AutoLoader:
In your application.ini you should have set
The appnamespace is the prefix you use for your models so if your model is "Default_Model_User" then the appnamespace will be 'Default', if your model is "Application_Model_User" then the appnamespace will be "application"
These two directives should sort out your autoloading for the default application
You can also set it in your bootstrap with, you need to use the Zend_Application_Module_AutoLoader:
将以下内容放入您的 application.ini
然后它将在您的 application/models 目录中加载一个名为 MyNamespace_Model_MyModel 的类的文件。
Put the following in your application.ini
Then it will load a file in your application/models directory with a class named MyNamespace_Model_MyModel.