PHP - função session_status ()
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_status() função retorna o status da sessão atual.
Sintaxe
session_status();
Parâmetros
Esta função não aceita nenhum parâmetro.
Valores Retornados
Esta função retorna um valor inteiro que representa o status da sessão atual, que será um dos seguintes -
- PHP_SESSION_DISABLED
- PHP_SESSION_NONE
- PHP_SESSION_ACTIVE
Versão PHP
Esta função foi introduzida pela primeira vez no PHP Versão 5 e funciona em todas as versões posteriores.
Exemplo 1
O exemplo a seguir demonstra o uso do session_status() função.
<?php
//Starting the session
session_start();
$stat = session_status();
$msg = "Current Session Status: ";
$msg .= $stat;
?>
<html>
<head>
<title>Setting up a PHP session</title>
</head>
<body>
<?php echo ( $msg ); ?>
</body>
</html>
Ao executar o arquivo html acima, será exibida a seguinte mensagem -
Current Session Status: 2
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'];
$stat = session_status();
echo "Current Session Status: ";
echo $stat;
}
?>
<html>
<body>
<form action="#" method="post">
<label>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
$stat = session_status();
echo "Current Session Status: ";
echo $stat;
session_start();
echo "<br>";
print($_SESSION['name']);
echo "<br>";
print($_SESSION['age']);
?>
</body>
</html>
Isso produzirá a seguinte saída -
Current Session Status: 1
Krishna
30