我正在使用 ZF2 开发应用程序。我已经使用用户名和密码完成了用户身份验证。但是,我想在身份验证中检查一个附加列(例如:状态)。
我已经完成了以下代码。
public function authenticate()
{
$this->authAdapter = new AuthAdapter($this->dbAdapter,
'usertable',
'username',
'password'
);
$this->authAdapter->setIdentity($this->username)
->setCredential($this->password)
->setCredentialTreatment('MD5(?)');
$result = $this->authAdapter->authenticate();
return $result;
}
如何检查身份验证中的“状态”列?注意:状态值应为 1。谢谢。