PHP - función session_unset ()
Definición y uso
Las sesiones o el manejo de sesiones es una forma de hacer que los datos estén disponibles en varias páginas de una aplicación web. lossession_unset() La función libera todas las variables en las sesiones actuales.
Sintaxis
session_unset();
Parámetros
Esta función no acepta ningún parámetro.
Valores devueltos
Esta función devuelve un valor booleano que es VERDADERO si la sesión se inició correctamente y FALSO si no.
Versión PHP
Esta función se introdujo por primera vez en PHP Versión 4 y funciona en todas las versiones posteriores.
Ejemplo 1
El siguiente ejemplo demuestra el uso de session_unset() función.
<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>
Al ejecutar el archivo html anterior, se mostrará el siguiente mensaje:
New value: Hello
Value of the session array: Array ( [A] => Hello )
Value after the reset operation: Array ( )
Ejemplo 2
A continuación se muestra otro ejemplo de esta función, aquí tenemos dos páginas de la misma aplicación en la misma sesión:
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>
Esto producirá el siguiente resultado:
Al hacer clic en Next se ejecuta el siguiente archivo.
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>
Esto producirá el siguiente resultado:
krishna
30
Hyderabad
9848022338
Value of the session array: Array ( )