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 — Función de cierre de sesiones
Registra session_write_close() como una función de cierre.
Esta función no tiene parámetros.
No devuelve ningún valor.
Emite un error de nivel E_WARNING
si la función de cierre
falla.
With older versions of PHP you can use this snippet for the same effect:
<?php register_shutdown_function('session_write_close'); ?>