ZF2身份验证

发布时间:2022-04-30 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了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,请注明来意。