1. What is session?
Equivalent to a client (can be browser, app, FTP and other, and the same browser open several more than a different client) to a server access, this period the server to create a unique logo (session_id session_name), In fact, an array of arrays (), the beginning and end of the session does not begin with the input username password on the business, nor does it end with closing the browser and refreshing the Web page.
Destruction of 2.session variables
Program code
<?php
Session_unset ();
Session_destroy ();
?>
Session_unset ()
Releases 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 session file for the current user and releases the session ID, and the contents of the $_session variable in memory remain
"Note":
To delete the session method:
1. unset ($_session[' xxx ') deletes a single session,unset ($_session[' xxx ')) to unregister a registered session variable. The effect is the same as Session_unregister (). Session_unregister () is no longer used in PHP5, and can be put into the doghouse.
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 $_session variables.
2, $_session=array () Delete multiple sessions
3. Session_destroy () ends the current session and empties all resources in the session ... The function does not unset (release) the global variable (globalvariables) associated with the current session, nor does it delete the client's session cookie. PHP default session is based on cookies, and if you want to delete cookies, you must use the Setcookie () function.
Return value: Boolean value.
Function Description: This function ends the current session, this function has no arguments, and the return value is True
Session_unset () The function no longer works if $_session is used. Since PHP5 is bound to use $_session, this function can be shelved.
You can draw a step to delete a session:
①session_start ()
②$_session=array ()/unset ($_session[' xxx ')
③session_destroy ()