Kohana 2.x 恢复会话

发布于 2024-10-26 07:11:46 字数 44 浏览 1 评论 0原文

在 Kohana 2.x 中,有没有办法在知道其 ID 的情况下恢复会话?

Is there a way to restore session, knowing its ID, in Kohana 2.x?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

嗼ふ静 2024-11-02 07:11:51

来自 Kohana 2.* 存储库: 行113 system/libraries/Session.phpSession::instance 允许传入 ID。

/**
 * Singleton instance of Session.
 *
 * ##### Example
 *
 *     // This is the idiomatic and preferred method of starting a session
 *     $session = Session::instance();
 *
 * @param string Force a specific session_id
 */
public static function instance($session_id = NULL)
{
    if (Session::$instance == NULL)
    {
        // Create a new instance
        new Session($session_id);
    }
    elseif( ! is_null($session_id) AND $session_id != session_id() )
    {
        throw new Kohana_Exception('A session (SID: :session:) is already open, cannot open the specified session (SID: :new_session:).', array(':session:' => session_id(), ':new_session:' => $session_id));
    }

    return Session::$instance;
}

From the Kohana 2.* repository: Line 113 of system/libraries/Session.php. Session::instance allows for an ID to be passed in.

/**
 * Singleton instance of Session.
 *
 * ##### Example
 *
 *     // This is the idiomatic and preferred method of starting a session
 *     $session = Session::instance();
 *
 * @param string Force a specific session_id
 */
public static function instance($session_id = NULL)
{
    if (Session::$instance == NULL)
    {
        // Create a new instance
        new Session($session_id);
    }
    elseif( ! is_null($session_id) AND $session_id != session_id() )
    {
        throw new Kohana_Exception('A session (SID: :session:) is already open, cannot open the specified session (SID: :new_session:).', array(':session:' => session_id(), ':new_session:' => $session_id));
    }

    return Session::$instance;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文