PHP - função session_reset ()
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_reset() função reinicializa as variáveis de uma sessão com os valores originais.
Sintaxe
session_reset();
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_reset() função.
<html>
<head>
<title>Setting up a PHP session</title>
</head>
<body>
<?php
//Starting the session
session_start();
//Initializing the session array
$_SESSION["A"] = "Hello";
print("Initial value: ".$_SESSION["A"]);
echo "<br>";
?>
</body>
</html>
Ao executar o arquivo html acima, será exibida a seguinte mensagem -
Initial value: Hello
Então você precisa executar o seguinte arquivo.
<html>
<head>
<title>Setting up a PHP session</title>
</head>
<body>
<?php
//Starting a session
session_start();
//Replacing the old value
$_SESSION["A"] = "Welcome";
print("New value: ".$_SESSION["A"]);
echo "<br>";
session_reset();
print("Value after the reset operation: ".$_SESSION["A"]);
?>
</body>
</html>
Isso gera a seguinte saída.
New value: Welcome
Value after the reset operation: Hello
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();
print($_SESSION['name']);
echo "<br>";
print($_SESSION['age']);
?>
</body>
</html>
Isso produzirá a seguinte saída -
Radha
22
Values after the reset operation:
krishna
30