我希望有人能帮助我。
我正在通过Rob Allen的Zend Framework 2教程。
当我试图去:
http://zf2-tutorial.localhost/album 我在apache的日志中遇到以下错误(我使用的是Zend Server CE版本):
PHP致命错误:在C:\ Program Files \ Zend \ Apache2 \ htdocs \ zf2-tutorial \ vendor \ zendframework \ zendframework \ library \ Zend \ ServiceManager \ AbstractPluginManager.php中找不到类'Album \ Controller \ AlbumController'第175行
模块\相册\ module.config.php
<?php
return array(
'controllers' => array(
'invokables' => array(
'Album\Controller\Album' => 'Album\Controller\AlbumController'
),
),
'router' => array(
'routes' => array(
'album' => array(
'type' => 'segment',
'options' => array(
'route' => '/album[/:action][/:id]',
'constraints' => array(
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
'id' => '[0-9]+',
),
'defaults' => array(
'controller' => 'Album\Controller\Album',
'action' => 'index',
),
),
),
),
),
'view_manager' => array(
'template_path_stack' => array(
'album' => __DIR__ . '/../view'
)
)
);
模块\相册\ SRC \相册\控制器\ Albumcontroller.php
<?php
namespace Album\Controller;
use Zend\Mvc\Controller\AbstractActionController;
use Zend\View\Model\ViewModel;
class AlbumController extends AbstractActionController
{
protected $albumTable;
public function getAlbumTable()
{
if (!$this->albumTable) {
$sm = $this->getServiceLocator();
$this->albumTable = $sm->get('Album\Model\AlbumTable');
}
return $this->albumTable;
}
public function indexAction()
{
return new ViewModel(array(
'albums' => $this->getAlbumTable()->fetchAll(),
));
}
public function addAction()
{
}
public function editAction()
{
}
public function deleteAction()
{
}
}
我的配置:
Windows xp。 Zend Server CE技术预览版(PHP 5.3)。
感谢您的帮助