PHP - funzione session_unset ()
Definizione e utilizzo
Le sessioni o la gestione delle sessioni sono un modo per rendere i dati disponibili su varie pagine di un'applicazione web. Ilsession_unset() la funzione rilascia tutte le variabili nelle sessioni correnti.
Sintassi
session_unset();
Parametri
Questa funzione non accetta alcun parametro.
Valori restituiti
Questa funzione restituisce un valore booleano che è TRUE se la sessione è stata avviata correttamente e FALSE in caso contrario.
Versione PHP
Questa funzione è stata introdotta per la prima volta nella versione 4 di PHP e funziona in tutte le versioni successive.
Esempio 1
L'esempio seguente mostra l'utilizzo di session_unset() funzione.
<html>
<head>
<title>Setting up a PHP session</title>
</head>
<body>
<?php
//Starting a session
session_start();
//Replacing the old value
$_SESSION["A"] = "Hello";
print("New value: ".$_SESSION["A"]);
echo "<br>";
print("Value of the session array: ");
print_r($_SESSION);
session_unset();
$_SESSION = array();
echo "<br>";
print("Value after the reset operation: ");
print_r($_SESSION);
?>
</body>
</html>
Uno che esegue il file html sopra mostrerà il seguente messaggio:
New value: Hello
Value of the session array: Array ( [A] => Hello )
Value after the reset operation: Array ( )
Esempio 2
Di seguito è riportato un altro esempio di questa funzione, qui abbiamo due pagine della stessa applicazione nella stessa sessione -
session_page1.htm
<?php
if(isset($_POST['SubmitButton'])){
//Starting the session
session_start();
$_SESSION['name'] = $_POST['name'];
$_SESSION['age'] = $_POST['age'];
}
?>
<html>
<body>
<form action="#" method="post">
<br>
<label for="fname">Enter the values click Submit and click on Next</label>
<br><br><label for="fname">Name:</label>
<input type="text" id="name" name="name"><br><br>
<label for="lname">Age:</label>
<input type="text" id="age" name="age"><br><br>
<input type="submit" name="SubmitButton"/>
<?php echo '<br><br /><a href="session_page2.htm">Next</a>'; ?>
</form>
</body>
</html>
Questo produrrà il seguente output:
Facendo clic su Next viene eseguito il file seguente.
session_page2.htm
<html>
<head>
<title>Second Page</title>
</head>
<body>
<?php
//Session started
session_start();
//Changing the values
$_SESSION['city'] = 'Hyderabad';
$_SESSION['phone'] = 9848022338;
print($_SESSION['name']);
echo "<br>";
print($_SESSION['age']);
echo "<br>";
print($_SESSION['city']);
echo "<br>";
print($_SESSION['phone']);
echo "<br>";
//Un-setting the values
session_unset();
print("Value of the session array: ");
print_r($_SESSION);
?>
</body>
</html>
Questo produrrà il seguente output:
krishna
30
Hyderabad
9848022338
Value of the session array: Array ( )