session_unset()
session_unset function is used for removing all variables in a session. For unsetting the session, it must be opened. Let's see in the example.
<?php
session_start();
$_SESSION["email"] = "raj@rediffmail.com";
echo "Your Email is ".$_SESSION['email'].".<br />";
#session delete
unset($_SESSION["email"]);
echo "After Session variable delete <br>";
#check Session variable after unset session
echo "Your Email Id is: ".$_SESSION["email"].".";
?>
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.