• <bdo id='jS8cH'></bdo><ul id='jS8cH'></ul>

      <small id='jS8cH'></small><noframes id='jS8cH'>

    1. <i id='jS8cH'><tr id='jS8cH'><dt id='jS8cH'><q id='jS8cH'><span id='jS8cH'><b id='jS8cH'><form id='jS8cH'><ins id='jS8cH'></ins><ul id='jS8cH'></ul><sub id='jS8cH'></sub></form><legend id='jS8cH'></legend><bdo id='jS8cH'><pre id='jS8cH'><center id='jS8cH'></center></pre></bdo></b><th id='jS8cH'></th></span></q></dt></tr></i><div id='jS8cH'><tfoot id='jS8cH'></tfoot><dl id='jS8cH'><fieldset id='jS8cH'></fieldset></dl></div>

      <tfoot id='jS8cH'></tfoot>

        <legend id='jS8cH'><style id='jS8cH'><dir id='jS8cH'><q id='jS8cH'></q></dir></style></legend>

        如何在 Laravel 中获取会话 ID?

        时间:2023-11-01
          <tfoot id='TMyNN'></tfoot>

        • <small id='TMyNN'></small><noframes id='TMyNN'>

          <i id='TMyNN'><tr id='TMyNN'><dt id='TMyNN'><q id='TMyNN'><span id='TMyNN'><b id='TMyNN'><form id='TMyNN'><ins id='TMyNN'></ins><ul id='TMyNN'></ul><sub id='TMyNN'></sub></form><legend id='TMyNN'></legend><bdo id='TMyNN'><pre id='TMyNN'><center id='TMyNN'></center></pre></bdo></b><th id='TMyNN'></th></span></q></dt></tr></i><div id='TMyNN'><tfoot id='TMyNN'></tfoot><dl id='TMyNN'><fieldset id='TMyNN'></fieldset></dl></div>

            <tbody id='TMyNN'></tbody>

              <bdo id='TMyNN'></bdo><ul id='TMyNN'></ul>
              <legend id='TMyNN'><style id='TMyNN'><dir id='TMyNN'><q id='TMyNN'></q></dir></style></legend>

                1. 本文介绍了如何在 Laravel 中获取会话 ID?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我想在 Laravel 4 中获取会话的 ID

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

                  在 Laravel 3 中,这有点 hacky,但可以使用以下代码:

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

                  $session_id = Session::$instance->session['id'];
                  

                  但我无法在 Laravel 4 中解决...引用 Session::$instance 对象会引发错误:

                  But I can't work it out in Laravel 4... referencing the Session::$instance object throws errors:

                  访问未声明的静态属性:IlluminateSupportFacadesSession::$instance

                  Access to undeclared static property: IlluminateSupportFacadesSession::$instance

                  试过了:

                  $session_id = Session::get('id');
                  

                  但无济于事..有什么想法吗?

                  but to no avail.. any ideas?

                  推荐答案

                  取决于 Laravel 的版本:

                  Depends on the version of Laravel:

                  $session_id = $_COOKIE["laravel_session"];
                  

                  Laravel 4.0:

                  只是不是 4.1 及更高版本:

                  $session_id = session_id(); //thanks Phill Sparks
                  

                  Laravel 4.1(及更高版本):

                  $session_id = Session::getId();
                  

                  $session_id = session()->getId()
                  

                  Laravel 不再直接使用内置的 PHP 会话,因为开发人员可以选择使用各种驱动程序来管理访问者的会话(Laravel 4.2, Laravel 5.1, Laravel 5.2).

                  Laravel no longer uses the built-in PHP sessions directly, as a developer could choose to use various drivers to manage the sessions of visitors (docs for Laravel 4.2, Laravel 5.1, Laravel 5.2).

                  因此,现在我们必须使用 Laravel 的 Session 门面或 session() 助手来获取会话的 ID:

                  Because of this, now we must use Laravel's Session facade or session() helper to get the ID of the session:

                  这篇关于如何在 Laravel 中获取会话 ID?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:Laravel 捕捉 Eloquent “独特"字段错误 下一篇:如何使用 Laravel 重定向发送数据

                  相关文章

                    <small id='B1yUO'></small><noframes id='B1yUO'>

                  1. <i id='B1yUO'><tr id='B1yUO'><dt id='B1yUO'><q id='B1yUO'><span id='B1yUO'><b id='B1yUO'><form id='B1yUO'><ins id='B1yUO'></ins><ul id='B1yUO'></ul><sub id='B1yUO'></sub></form><legend id='B1yUO'></legend><bdo id='B1yUO'><pre id='B1yUO'><center id='B1yUO'></center></pre></bdo></b><th id='B1yUO'></th></span></q></dt></tr></i><div id='B1yUO'><tfoot id='B1yUO'></tfoot><dl id='B1yUO'><fieldset id='B1yUO'></fieldset></dl></div>

                      <legend id='B1yUO'><style id='B1yUO'><dir id='B1yUO'><q id='B1yUO'></q></dir></style></legend>

                        <bdo id='B1yUO'></bdo><ul id='B1yUO'></ul>
                    1. <tfoot id='B1yUO'></tfoot>