3

如何按我的名称示例删除 php 会话,session['sec']session['page']需要删除session['page']而不删除session['sec']

4

3 回答 3

6
// 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();
于 2012-05-22T14:12:49.143 回答
2

在这种情况下,您不会删除会话,只会删除会话变量。所以就这样做:

unset($_SESSION['page']);
于 2012-05-22T14:08:13.230 回答
1

这应该这样做:

unset($_SESSION['page']);
于 2012-05-22T14:07:42.650 回答