Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否有人可以告诉我如何在 Laravel 4 中实现记住我的功能
文档说要使用以下内容
if (Auth::attempt(array('email' => $email, 'password' => $password), true))
但这意味着记住我将始终设置为真......如果我有一个复选框允许用户切换他们是否愿意。
干杯。
你可以使用类似的东西
if (Auth::attempt(array('email' => $email, 'password' => $password), Input::has('remember_me')))