Session_unset ()
Frees all $_session variables that are currently created in memory, but does not delete the session file and does not release the corresponding session
Id
Session_destroy ()
Delete the current user's session file and release session
ID, the contents of the $_session variable in memory remain
Therefore, releasing all the resources of the user's session requires sequential execution of the following code:
Copy the Code code as follows:
$_session[' user '] = ' Lowell ';
Session_unset ();
Session_destroy ();
?>
http://www.bkjia.com/PHPjc/323685.html www.bkjia.com true http://www.bkjia.com/PHPjc/323685.html techarticle Session_unset () frees all $_session variables that are currently created in memory, but does not delete the session file and does not release the corresponding session ID Session_destroy () deletes the current user's corresponding ...