我正在尝试使用ZF2,当我从教程(在ZF网站上)编写代码时,我遇到了问题。我的代码:
Module.php:
<?php
namespace About;
class About
{
public function getAutoloaderConfig()
{
return array(
'Zend\Loader\ClassMapAutoloader' => array(
__DIR__ . '/autoload_classmap.php',
),
'Zend\Loader\StandardAutoloader' => array(
'namespaces' => array(
__NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__,
),
),
);
}
public function getConfig()
{
return include __DIR__ . '/config/module.config.php';
}
}
?>
config/module.config.php:
<?php
return array(
'controllers' => array(
'invokables' => array(
'About\Controller\About' => 'About\Controller\AboutController',
),
),
'router' => array(
'routes' => array(
'album' => array(
'type' => 'segment',
'options' => array(
'route' => '/about[/:action][/:id]',
'constraints' => array(
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
'id' => '[0-9]+',
),
'defaults' => array(
'controller' => 'About\Controller\About',
'action' => 'index',
),
),
),
),
),
'view_manager' => array(
'template_path_stack' => array(
'about' => __DIR__ . '/../view',
)
),
);
问题是:
Fatal error: Uncaught exception 'Zend\ModuleManager\Exception\RuntimeException' with message 'Module (About) could not be initialized.' in /var/www/zend2/vendor/zendframework/zendframework/library/Zend/ModuleManager/ModuleManager.php on line 175
为什么它会在开始时显示? (在我的项目中:/ var / www / zend2 /)。如果我从application.config.php
删除模块声明,它可以正常工作。我的问题是什么? :/
答案 0 :(得分:9)
Module.php
中,类必须命名为Module
,而不是自己的名称......
答案 1 :(得分:1)
在PSR-4加载过程中遇到此问题时,您还可以检查模块名称和文件夹路径是否正确,可以在composer.json
文件中自动加载:
"autoload": {
"psr-4": {
"YourModule\\": "module/YourModule/src/",
... other modules ...
}
},
然后修复问题后运行:
composer update
答案 2 :(得分:0)
我相信您的课程索引已过时,您可以按照以下命令进行操作:
composer install -o