There are two very similar PHP function session_destroy() & session_unset(). Both seem to delete all variables registered to a session but there is difference between them.
session_destroy() function: It destroys all of the data associated with the current session. It does not unset any of the global variables associated with the session, or unset the session cookie.
Syntax:
bool session_destroy( void )
session_unset() function: It deletes only the variables from session and session still exists. Only data is truncated.
Syntax:
bool session_unset( void )
Example 1: This example saving the session by using
session.php file.
Output:
👁 Image
Before using session_unset() function: Before using the session function it displaying the name and email.
Output:
👁 Image
After using session_unset() function: This function destroys the variables like 'name' and 'email' which are using.
Output:
👁 Image
session_destroy() function: It destroys the whole session rather destroying the variables. When session_start() is called, PHP sets the session cookie in browser. We need to delete the cookies also to completely destroy the session.
Example: This example is used to destroying the session.
Output:
👁 Image
The execution of
session.php file you can see that there is a different session ID it means the previous session has been destroyed and all variables and cookies also destroyed. Since all variables destroyed so PHP go to else condition output 'session is destroyed'.
👁 Image
Note: If it's desired to kill the session, also delete the session cookie. This will destroy the session, and not just the session data.