dpwle46882 2016-07-13 10:16
浏览 84
已采纳

Laravel会话数据传递

I don't understand how my data is directed through session using ->with.

For example I am doing a simple redirect with some data:

return Redirect::to('/event')->with('data', 'hello.');

Now, this code below works fine:

$data = Session::get('data');
echo $data; //it says hello

But this one NOT:

var_dump($_SESSION); //empty array

The var_dump gives me empty array, which means that session doesnt contain anything I guess. While the Session::get() has no problems with it. Why does that happen? Please explain it to me a little bit.

  • 写回答

1条回答 默认 最新

  • doupao1978 2016-07-14 11:33
    关注

    For security reasons Laravel uses its own custom session handler which doesn't populate $_SESSION superglobals with your session variables, so to work with laravel session you should only use Session facade's methods

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?