How can I get the session ID in Laravel?(如何在 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 中获取会话 ID?
基础教程推荐
- 如何在 Laravel 5.3 注册中添加动态下拉列表列? 2021-01-01
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01
- 如何在 Laravel 中使用 React Router? 2022-01-01
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01
- 在PHP中根据W3C规范Unicode 2022-01-01
- 如何替换eregi() 2022-01-01
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
