(PHP >=5.4.0)
session_register_shutdown — Session shutdown function
此函数没有参数。
没有返回值。
Emits E_WARNING
if registering the shutdown function
fails.
Rouven Weling (2012-07-01 14:42:20)
With older versions of PHP you can use this snippet for the same effect:
<?php register_shutdown_function('session_write_close'); ?>