Laravel 5 会话生存期
根据拉拉维尔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' => true,
'expired-session-redirect' => url(env('APP_URL'))
我已将会话的生存期设置为分钟,但我有一种感觉,我的用户在 120 分钟之前已注销。120
这是错别字吗?他们的意思是120秒,即2分钟吗?
任何人都可以对此有所了解吗?