how to destroy a particular session variable in php code example

Example 1: php unset session variable

// Destroy a sesion variable name 'variable_name' 
<?php
unset($_SESSION['variable_name']);
?>

Example 2: php session destroy

<?php
// Destroy the currently active session.
session_destroy();
?>

Example 3: php destroy session after some time

// Create a session variable called something like this after you start the session:
$_SESSION['user_start'] = time();
 
// Then when they get to submitting the payment, just check whether they're within the 5 minute window
if (time() - $_SESSION['user_start'] < 300) { // 300 seconds = 5 minutes
    // they're within the 5 minutes so save the details to the database
} else {
    // sorry, you're out of time
   unset($_SESSION['user_start']); // and unset any other session vars for this task
}

Tags:

Php Example