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.
Input::flash()在 Laravel 4 中,和有什么区别Session::flash(Input::all())?
Input::flash()
Session::flash(Input::all())
没有太大区别,前者是一种方便的方法,用于在会话中存储用户输入以便在验证失败时重新填充表单等常用任务。