需要 Zend_Auth 存储方面的帮助
目前我有这段代码(从数据库获取用户信息然后存储到 Zend_Auth 会话存储中)
$auth = Zend_Auth::getInstance();
$storage = $auth->getStorage();
$storage->write($authAdapter->getResultRowObject(array('email', 'firstName', 'lastName', 'providerId'))); // store into session
但是现在我想在存储中存储一个角色变量(问题是我的用户表没有角色列,因此我想要将角色变量添加到存储中)。那么如何向存储添加额外的角色变量呢?是否可以?
非常感谢 !
Currently I have this code (Fetching user informations from Database then store into Zend_Auth session storage)
$auth = Zend_Auth::getInstance();
$storage = $auth->getStorage();
$storage->write($authAdapter->getResultRowObject(array('email', 'firstName', 'lastName', 'providerId'))); // store into session
But now I wanted to store a role variable in the storage as well (the problem is that my user table doesn't have a role column therefore I wanted to add a role variable to the storage). So how can I add an extra role variable to the storage? is it possible?
Thanks so much !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想我在这里找到了我的解决方案
但不确定我使用 stdClass 是否是一个好主意?有什么建议吗?
I think i worked out here is my solution
But unsure if I use stdClass is a good idea? any suggestion?