gpt4 book ai didi

php - Laravel 5 Auth 注销不破坏 session

转载 作者:IT王子 更新时间:2023-10-29 00:01:48 24 4
gpt4 key购买 nike

我正在为我的新项目使用 Laravel5 Auth 系统,我能够毫无问题地使用注册和登录功能,但注销没有按预期工作,但是我被重定向到指定的 url $redirectAfterLogout但它不会破坏 session ,所以即使在点击注销按钮后我也能看到仪表板。

laravel 的Auth 系统有没有bug,求指点,谢谢

最佳答案

您没有提供任何您使用过的代码。但是,以下代码有效:

public function getLogout(){
Auth::logout();
Session::flush();
return Redirect::to('/');
}

Session::flush();清除所有现有 session 。

关于php - Laravel 5 Auth 注销不破坏 session ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29621965/

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