PHP Velho Oeste 2024

session_register_shutdown

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

session_register_shutdownセッションのシャットダウン関数

説明

session_register_shutdown(): void

session_write_close() をシャットダウン関数として登録します。

パラメータ

この関数にはパラメータはありません。

戻り値

値を返しません。

エラー / 例外

シャットダウン関数の登録に失敗した場合に E_WARNING が発生します。

add a note add a note

User Contributed Notes 1 note

up
2
Rouven Weling
11 years ago
With older versions of PHP you can use this snippet for the same effect:

<?php register_shutdown_function('session_write_close'); ?>
To Top