Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

session_write_close

Description

The session_write_close of Session for PHP writes the session data and ends the session.

Syntax

session_write_close(): bool

Return

Returns true on success or false on failure.

Examples

1 · void

<?

session_start();

$return = session_write_close();

var_export($return);

?>
true
HomeMenu