无法破坏Chrome中的php会话

时间:2016-05-13 14:37:12

标签: php google-chrome

当我退出时,我会调用以下内容来销毁会话。它适用于其他浏览器,但在Chrome中,会话仍在那里。

session_unset();
session_destroy();

如果我有特殊方法在Chrome和其他浏览器中执行此操作,请提供帮助。

2 个答案:

答案 0 :(得分:1)

如有疑问,请检查the manual

<?php
// Initialize the session.
// If you are using session_name("something"), don't forget it now!
session_start();

// Unset all of the session variables.
$_SESSION = array();

// If it's desired to kill the session, also delete the session cookie.
// Note: This will destroy the session, and not just the session data!
if (ini_get("session.use_cookies")) {
    $params = session_get_cookie_params();
    setcookie(session_name(), '', time() - 42000,
        $params["path"], $params["domain"],
        $params["secure"], $params["httponly"]
    );
}

// Finally, destroy the session.
session_destroy();

答案 1 :(得分:0)

会话存储在服务器上 - 它与浏览器无关(在浏览器中可能只是具有会话ID的cookie或类似的东西)