我正在尝试在Zend Framework 2 + Doctrine中进行身份验证:
我想我添加了Module.php + module.config.php
所需的一切在我的控制器中,我做了:
$authService = $this->getServiceLocator()->get('Zend\Authentication\AuthenticationService');
$adapter = $authService->getAdapter();
$adapter->setIdentityValue($formdata['username']);
$adapter->setCredentialValue($formdata['password']);
$authResult = $adapter->authenticate();
直到$ adapter-> authenticate();
为止错误是:
警告:class_parents():类不存在且无法加载 在 /.../doctrine/common/lib/Doctrine/Common/Persistence/Mapping/RuntimeReflectionService.php 在第40行
public function getParentClasses($class)
{
return class_parents($class); //Line 40
}