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 — Função de finalização da sessão
Registra session_write_close() como uma função de finalização.
Esta função não possui parâmetros.
Nenhum valor é retornado.
Dispara um E_WARNING
se o processo de registrar a função
falhar.
With older versions of PHP you can use this snippet for the same effect:
<?php register_shutdown_function('session_write_close'); ?>