我在项目中使用ZF1
和PHP7
。
我在登录期间按如下方式设置会话
$session = new Zend_Session_Namespace()
$session->email = 'example@example.com' //recieved via login form
现在,在我的代码中,由于我的用例,我想要销毁$session->email
为example@example.com
的会话。
我该怎么做?感谢
答案 0 :(得分:1)
销毁所有会话只需使用:
Zend_Session::destroy( true );
如果您想要销毁特殊会话,请使用:
$sess = 'auth'
$namespace = new \Zend_Session_Namespace( $sess );
$namespace->unsetAll();