Laravel Session Unset不工作

时间:2016-01-04 11:37:27

标签: php laravel laravel-5

我使用Session::put('user', $user_details);

创建了一个会话

因此我需要在退出时尝试取消设置

1 . Session::flush();
2 . Session::forget('user', $user_details);

但两者都没有奏效。任何想法?

1 个答案:

答案 0 :(得分:2)

简单地说:

session()->forget('user'); // using the global helper
// or
\Session::forget('user'); // using the facade

忘记一把钥匙。为了刷新整个会话,它是:

session()->flush(); // using the global helper
// or
\Session::flush(); // using the facade