2

我想在 PHP 中自动删除会话文件。

我知道我必须在 PHP.ini 中更改以下配置

  • session.gc_probability
  • session.gc_divisor
  • session.gc_maxlifetime

但我不确定这些属性要改变什么值。

4

2 回答 2

1

可能这个例子会对你有所帮助

 <?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(); 
 ?> 
于 2012-04-16T12:26:37.523 回答
-1

使用session_destroy();功能,创建的会话文件自动删除。

于 2015-08-08T15:09:03.307 回答