laravel是否可以在几个小时之后自动注销用户,比如10,即使浏览器已关闭且用户也没有手动注销。
答案 0 :(得分:0)
在app / config / session.php中查找此代码:
/*
|--------------------------------------------------------------------------
| Session Lifetime
|--------------------------------------------------------------------------
|
| Here you may specify the number of minutes that you wish the session
| to be allowed to remain idle before it expires. If you want them
| to immediately expire on the browser closing, set that option.
|
*/
'lifetime' => 120,
'expire_on_close' => false,
将“生命周期”设置为您希望会话处于活动状态的时间(以分钟为单位)。例如如果你想要10个小时将其设置为600。