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