session_reset

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

session_resetRe-initialize session array with original values

Description

session_reset(): bool

session_reset() reinitializes a session with original values stored in session storage. This function requires an active session and discards changes in $_SESSION.

Parameters

This function has no parameters.

Return Values

Returns true on success or false on failure.

Changelog

Version Description
7.2.0 The return type of this function is bool now. Formerly, it has been void.

See Also

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top