unset() session_unset() session_destroy()

session是存在服务器端的东西(通常是文件),当你在页面顶端使用session_start();的时候,系统就会把session从存的地方取出来,放到$_SESSION数组里。

unset($_session) 只是把$_SESSION数组删除掉

session_unregister是注销一个session变量;
session_destroy是注销所有的session变量,并且结束session会话;
session_unset()并不注销session变量,但把所有的session变量的值清空.

 

那么一般在做退出的操作时可以这样做:

session_start();
session_unset();
session_destroy();
header("location:XXX.php");

 

你可能感兴趣的:(unset() session_unset() session_destroy())