1. unset ($_SESSION[‘xxx’]) deletes a single session variable, and unset ($_SESSION[‘xxx’]) is used to unregister a registered session variable. Its function is the same as session_unregister(). Session_unregister() is no longer used in PHP5.
Note: unset($_SESSION) This function must not be used. It will destroy the global variable $_SESSION, and there is no feasible way to restore it. Users can no longer register the $_SESSION variable either.
2. $_SESSION=array() deletes multiple session variables
3. session_unset() deletes all session variables
session_destroy() ends the current session and clears all resources in the session. This function will not unset (release) global variables related to the current session, nor will it delete the client's session cookie.
Return value: Boolean value.
Function description: This function ends the current session. This function
has no parameters, and the return value is true,
Note: PHP’s default session is based on cookies. If you want to delete cookies, you must use the setcookie() function.
Case of deleting session
<?<span>php </span><span>//</span><span> 初始化session.</span> <span>session_start(); </span><span>/*</span><span> 删除所有的session变量..也可用 unset($_SESSION[‘xxx’])逐个删除。</span><span>*/</span><span> $_SESSION </span>= array();<span>//</span><span>或session_unset();</span><span> /*</span><span>删除sessinid.由于session默认是基于cookie的,所 以使用setcookie删除包含session id的cookie.</span><span>*/</span> <span>if</span><span> (isset($_COOKIE[session_name()])) { setcookie(session_name(), </span><span>'</span> <span>'</span>, time()-<span>42000</span><span>, </span><span>'</span><span>/</span><span>'</span><span>); } </span><span>//</span><span> 最后彻底销毁session.</span> <span>session_destroy(); </span>?>
After the request is completed, all registered variables will be automatically serialized (to facilitate saving to the session text file on the server side), and then restored when reading.