PHP - função session_unset ()
Definição e Uso
Sessões ou tratamento de sessão é uma maneira de disponibilizar os dados em várias páginas de um aplicativo da web. osession_unset() função libera todas as variáveis nas sessões atuais.
Sintaxe
session_unset();
Parâmetros
Esta função não aceita nenhum parâmetro.
Valores Retornados
Esta função retorna um valor booleano que é TRUE se a sessão foi iniciada com sucesso e FALSE se não.
Versão PHP
Esta função foi introduzida pela primeira vez no PHP Versão 4 e funciona em todas as versões posteriores.
Exemplo 1
O exemplo a seguir demonstra o uso do session_unset() função.
<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>
Ao executar o arquivo html acima, será exibida a seguinte mensagem -
New value: Hello
Value of the session array: Array ( [A] => Hello )
Value after the reset operation: Array ( )
Exemplo 2
A seguir está outro exemplo dessa função, aqui temos duas páginas do mesmo aplicativo na mesma sessão -
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>
Isso produzirá a seguinte saída -
Ao clicar em Next o seguinte arquivo é executado.
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>
Isso produzirá a seguinte saída -
krishna
30
Hyderabad
9848022338
Value of the session array: Array ( )