gpt4 book ai didi

php - 每个 session 的 Laravel session 过期时间

转载 作者:可可西里 更新时间:2023-11-01 13:42:26 29 4
gpt4 key购买 nike

我们可以在 Laravel 中为每个 session 设置过期时间吗?

如果我们可以通过我们创建的每个 session 从 Controller 获得什么?谢谢。

最佳答案

您可以通过更改 config/session.php 上的 lifetime 值来更改整个应用程序的 session 生命周期:

/*
|--------------------------------------------------------------------------
| 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' => 4320,
'expire_on_close' => false,

现在,如果你想控制每个用户的 session 生命周期,你需要在登录用户之前设置这个值。

  1. Try if user exists in database
  2. If yes, and he is user who needs longer session lifetime, run config(['session.lifetime' => $newLifetime]);
  3. Log user in
  4. Enjoy longer session lifetime for current user

Source

您必须在 LoginController 中进行上述更改。

关于php - 每个 session 的 Laravel session 过期时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48859424/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com