0

結果が返される前にセッションを更新するように zendAuth GetIdentity 関数を変更したいと考えています。これをどのように行うつもりですか?

4

2 に答える 2

0
To Over Write getIdentity() in Authentication Class

Use  this Code,
Include this,

use Zend\Authentication,
Zend\Authentication\Result,
Zend\Authentication\AuthenticationService;

Create Instance for Authentication
$auth   = new AuthenticationService();

*****To Overwrite getStorage() in getIdentity()*****

$auth->getStorage()->write('Your Data');
于 2013-10-05T13:39:55.777 に答える