在PHP中自动删除会话文件

时间:2012-04-16 12:18:59

标签: php file session delete-file

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

我发现我必须在PHP.ini中更改以下配置

  • session.gc_probability合
  • session.gc_divisor
  • 的session.gc_maxlifetime

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

2 个答案:

答案 0 :(得分: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(); 
 ?> 

答案 1 :(得分:-1)

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