With older versions of PHP you can use this snippet for the same effect:
<?php register_shutdown_function('session_write_close'); ?>
(PHP 5 >= 5.4.0, PHP 7, PHP 8)
session_register_shutdown — セッションのシャットダウン関数
この関数にはパラメータはありません。
値を返しません。
シャットダウン関数の登録に失敗した場合に E_WARNING
が発生します。
With older versions of PHP you can use this snippet for the same effect:
<?php register_shutdown_function('session_write_close'); ?>