标签:php web session
单独的销毁一个单元,即把$_SESSION数组中的一个单元消除掉:unset($_SESSION[‘user‘]);
把$_SESSION数组给清空:$_SESSION = array();
利用方法把$_SESSION数组给清空:session_unset();
直接把文件给删除:session_destroy();
销毁session的四种方法
原文地址:http://itafei.blog.51cto.com/10862892/1721735