zend会话表,如何在标准内容旁边保存user_id?
我正在使用 http://framework.zend.com/manual/ en/zend.session.savehandler.dbtable.html,
问题是,当我删除用户时,我想删除他的会话以便将他注销,但我不这样做知道他的会话是什么...
我找不到将自定义列添加到 zend 会话表选项的方法,以便保存用户的 id
i am using http://framework.zend.com/manual/en/zend.session.savehandler.dbtable.html,
the problem is that when i delete a user i want to delete his session in order to log him out, but i don't know what his session is...
I can't find a way to add a custom column to the zend session table options so that it would save the user's id
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用
Zend_Auth
。您可以用来注销用户。
这就是我的 AuthenticationController 的样子:
观看此操作方法,了解更多详细信息。
You have to use
Zend_Auth
. You can useto log a user out.
This is how my AuthenticationController looks like:
Watch this HOW TO for more detailed information.