如何通过名称删除php会话
示例我有session['sec']
和session['page']
我需要删除session['page']
而不删除session['sec']
答案 0 :(得分:4)
// for a single variable
unset($_SESSION['session_var']);
// destroy the Session, not just the data stored!
session_destroy();
// delete the session contents, but keep the session_id and name:
session_unset();
答案 1 :(得分:1)
这应该这样做:
unset($_SESSION['page']);
答案 2 :(得分:1)
在这种情况下,您不会删除会话,只会删除会话变量。所以就这样做:
unset($_SESSION['page']);