How can I get the session ID in Laravel?

前端 未结 3 1518
礼貌的吻别
礼貌的吻别 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:40

    Just had a little hunt for myself, because the above answers didn't work for me (Laravel 4.1)...

    Had to use this:

    Session::getId();
    

提交回复
热议问题