有没有办法在Laravel会话到期后立即注销用户?我知道也许最简单的替代方法是在会话过期后发送请求时让注销发生,事实上我是如何在我的网站上处理它的,但是由于前端的一些问题,我再也不能那样做了。有什么想法吗?
答案 0 :(得分:0)
Laravel处理此问题并提供配置文件'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' => 43200,
'expire_on_close' => false,