我想在 PHP 中自动删除会话文件。
我知道我必须在 PHP.ini 中更改以下配置
- session.gc_probability
- session.gc_divisor
- session.gc_maxlifetime
但我不确定这些属性要改变什么值。
我想在 PHP 中自动删除会话文件。
我知道我必须在 PHP.ini 中更改以下配置
但我不确定这些属性要改变什么值。
可能这个例子会对你有所帮助
<?php
// you have to open the session to be able to modify or remove it
session_start();
// to change a variable, just overwrite it
$_SESSION['variable_name']='variable_value';
//you can remove a single variable in the session
unset($_SESSION['variable_name']);
// or this would remove all the variables in the session, but not the session itself
session_unset();
// this would destroy the session variables
session_destroy();
?>
使用session_destroy();
功能,创建的会话文件自动删除。