Nie*_*sol 116
它取决于服务器配置或session.gc_maxlifetime中的相关指令php.ini
.
通常默认值为24分钟(1440秒),但您的webhost可能已将默认值更改为其他内容.
http://php.net/session.gc-maxlifetime
session.gc_maxlifetime = 1440
(1440 seconds = 24 minutes)
Run Code Online (Sandbox Code Playgroud)
小智 5
您可以在 php.ini 中设置会话超时。默认值为 1440 秒
session.gc_maxlifetime = 1440
; NOTE: If you are using the subdirectory option for storing session files
; (see session.save_path above), then garbage collection does *not*
; happen automatically. You will need to do your own garbage
; collection through a shell script, cron entry, or some other method.
; For example, the following script would is the equivalent of
; setting session.gc_maxlifetime to 1440 (1440 seconds = 24 minutes):
; find /path/to/sessions -cmin +24 -type f | xargs rm
Run Code Online (Sandbox Code Playgroud)
归档时间: |
|
查看次数: |
159357 次 |
最近记录: |