in PHP by
What is the difference between session_unregister() and session_unset()?

1 Answer

0 votes
by
The session_unregister() function unregister a global variable from the current session and the session_unset() function frees all session variables.
...