PHP   发布时间:2022-04-09  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了ZF2身份验证大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用ZF2开发一个应用程序.我用username&amp ;;完成了用户身份验证.密码.但是,我想在身份验证中检查一个额外的列(例如:status).

我已经完成了以下代码.

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.
谢谢.

当我使用zf2和doctrine构建我的身份验证时,我创建了授权插件自定义this adapter,用于传递额外的列进行身份验证.
可能需要继续进行类似的指导.
$adapter = new AuthAdapter($db,'users','password','MD5(?)'
                           );

// get SELEct object (by referencE)
$SELEct = $adapter->getDbSELEct();
$SELEct->where('active = "TRUE"');

// authenticate,this ensures that users.active = TRUE
$adapter->authenticate();

Reference

更改后,您的代码应该看起来像这样.

public function authenticate()
{       
    $this->authAdapter = new AuthAdapter($this->dbAdapter,'password'
    );  

    $SELEct = $this->authAdapter->getDbSELEct();
    $SELEct->where('status= "1"');
    $this->authAdapter->setIdentity($this->userName)
                ->setCredential($this->password)
                ->setCredentialTreatment('MD5(?)');
    $result = $this->authAdapter->authenticate();
    return $result;
}

大佬总结

以上是大佬教程为你收集整理的ZF2身份验证全部内容,希望文章能够帮你解决ZF2身份验证所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签:身份验证