How can we destroy the session, how can we unset the variable of a session? ~ Interview Questions & Answers

Tuesday, February 10, 2009

How can we destroy the session, how can we unset the variable of a session?

session_unset() function frees all session variables currently registered.
If $_SESSION (or $HTTP_SESSION_VARS for PHP 4.0.6 or less) is used, use unset() to unregister a session variable.
i.e. unset ($_SESSION['varname']);.

0 comments: