PHP 8.3.4 Released!

session_reset

(PHP 5 >= 5.6.0, PHP 7, PHP 8)

session_resetInitialisiert das Session-Array mit seinen ursprünglichen Werten neu

Beschreibung

session_reset(): bool

session_reset() initialisiert eine Session mit den ursprünglichen Werten, die im Session-Speicher abgelegt sind, neu. Diese Funktion erfordert eine aktive Session und verwirft die Änderungen in $_SESSION.

Parameter-Liste

Diese Funktion besitzt keine Parameter.

Rückgabewerte

Gibt bei Erfolg true zurück. Bei einem Fehler wird false zurückgegeben.

Changelog

Version Beschreibung
7.2.0 Der Rückgabetyp dieser Funktion ist nun bool; vorher war es void.

Siehe auch

add a note

User Contributed Notes 2 notes

up
34
parsa dot mhn at outlook dot com
8 years ago
First of all you should execute this code :
<?php
session_start
();
$_SESSION["A"] = "Some Value";
?>

then you should execute this one :

<?php
start_session
();
$_SESSION["A"] = "Some New Value"; // set new value

session_reset(); // old session value restored
echo $_SESSION["A"];

//Output: Some Value
?>

That is because session_reset() is rolling back changes to the last saved session data, which is their values right after the session_start().
up
-37
vijay dot mits at gmail dot com
8 years ago
first create a session variable

<?php
session_start
();
$_SESSION["A"] = "Some Value";
echo
$_SESSION["A"];

//Output: Some Value

//if you need to rollback the session values after seting new value to session variables use session_reset()

$_SESSION["A"] = "Some New Value"; // set new value

session_reset(); // old session value restored
echo $_SESSION["A"];

//Output: Some Value
?>
To Top