销毁PHP会话

时间:2013-11-01 13:46:57

标签: php session

我使用此代码在10秒不活动后结束会话:

ini_set('session.gc_maxlifetime', 10);
session_start();

if (isset($_SESSION['LAST_ACTIVITY']) && (time() - $_SESSION['LAST_ACTIVITY'] > 10)) {
    session_unset();
    session_destroy();
}
$_SESSION['LAST_ACTIVITY'] = time();

仅当我在10秒钟不活动后刷新页面时,它才有效。如果我不刷新页面或关闭我的浏览器,会话将永远不会被销毁。有人可以帮我解决这个问题吗?

2 个答案:

答案 0 :(得分:0)

感谢您的建议。

现在我也使用这个javascript代码在非活动10秒后刷新并且它运行良好。但是当我关闭浏览器会话时仍然不会被破坏。

<body onmousemove = "canceltimer()"; onclick = "canceltimer()">
<script type="text/javascript">
    var tim = 0;
    function reload () {
        tim = setTimeout("location.reload(true);",10000);
    }

    function canceltimer() {
        window.clearTimeout(tim);
        reload();
    }
</script>

答案 1 :(得分:-1)

10秒后,您需要销毁会话,然后重定向它们,如下所示:

session_destroy(); 
header("Location: logoutpage.php");

这将“刷新”页面并销毁会话。

很抱歉我没有澄清,但你需要一个ajax电话,这是一个类似的问题。我会在片刻发布ajax。遗憾。

Unset session after some time

这里是ajax ...将超时设置为您指定的时间。再次,抱歉没有澄清。

function refresh() {
    $.ajax({
        type: 'GET',    // can be POST or GET
        url: 'page.php' // php script to call
    // when the server responds
    }).done(function(response) {
        console.log(response);
        // call your function automatically
        setTimeout(refresh, 5000);
    });
}

基本上,函数refresh每5000毫秒调用一次。