frchen_03
新手上路

UID 95251
精华
0
积分 23
帖子 19
金钱 23 喜悦币
威望 0
人脉 0
阅读权限 10
注册 2007-7-12
状态 离线
|
[推荐阅读] 回家呆了一个月
session_start();
$_SESSION = array();
// If it's desired to kill the session, also delete the session cookie.
// Note: This will destroy the session, and not just the session data!
if (isset($_COOKIE[session_name()])) {
setcookie(session_name(), '', time()-42000, '/');
}
// Finally, destroy the session.
session_destroy();
|
|