标签: laravel
Laravel中的Session::set和Session::put方法有什么区别?文档仅涵盖Session::put,但我已经看到使用了set。
Session::set
Session::put
set
答案 0 :(得分:10)
它们完全一样。 Session::put直接致电Session::set。
唯一的区别是,Session::put允许您传递[key => value]对数组,在这种情况下,它会为每个对调用Session::set。
[key => value]
这些方法在Illuminate\Session\Store
Illuminate\Session\Store