How can I get the session ID in Laravel?

前端 未结 3 1495
礼貌的吻别
礼貌的吻别 2020-12-05 17:04

I want to get the id of the session in Laravel 4

In Laravel 3, it was a bit hacky, but possible with this code:

$session_id = Session::$instance->         


        
3条回答
  •  粉色の甜心
    2020-12-05 17:38

    in laravel 5.5 first write this in your controller use Session; and inside your controller function write the following linesession()->getId();

提交回复
热议问题