如何在 Laravel 中获取会话 ID?

2023-11-01php开发问题
2

本文介绍了如何在 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?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

PHP实现DeepL翻译API调用
DeepL的翻译效果还是很强大的,如果我们要用php实现DeepL翻译调用,该怎么办呢?以下是代码示例,希望能够帮到需要的朋友。 在这里需要注意,这个DeepL的账户和api申请比较难,不支持中国大陆申请,需要拥有香港或者海外信用卡才行,没账号的话,目前某宝可以...
2025-08-20 php开发问题
168

PHP通过phpspreadsheet导入Excel日期数据处理方法
PHP通过phpspreadsheet导入Excel日期,导入系统后,全部变为了4开头的几位数字,这是为什么呢?原因很简单,将Excel的时间设置问文本,我们就能看到该日期本来的数值,上图对应的数值为: 要怎么解决呢?进行数据转换就行,这里可以封装方法,或者用第三方的...
2024-10-23 php开发问题
287

mediatemple - 无法使用 codeigniter 发送电子邮件
mediatemple - can#39;t send email using codeigniter(mediatemple - 无法使用 codeigniter 发送电子邮件)...
2024-08-23 php开发问题
11

Laravel Gmail 配置错误
Laravel Gmail Configuration Error(Laravel Gmail 配置错误)...
2024-08-23 php开发问题
16

将 PHPMailer 用于 SMTP 的问题
Problem with using PHPMailer for SMTP(将 PHPMailer 用于 SMTP 的问题)...
2024-08-23 php开发问题
4

关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题
Issue on how to setup SMTP using PHPMailer in GoDaddy server(关于如何在 GoDaddy 服务器中使用 PHPMailer 设置 SMTP 的问题)...
2024-08-23 php开发问题
17