Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在用这个设置会话变量
$session->get('user_id');
我想清除所有会话数据或单个变量。我怎样才能做到这一点
访问此链接
http://api.symfony.com/master/Symfony/Component/HttpFoundation/Session/Session.html#remove%28%29
$session->remove('user_id');
$session->remove('user_id')
要清除所有会话数据(属性),您应该使用clear。例子:
$session->clear();
另请参阅Symfony 会话属性文档。