我想在10分鐘後重定向頁面並清除會話值。 我實現了這個使用code.Any網頁在我的網站將10分鐘如何在幾分鐘後重定向頁面?
<META HTTP-EQUIV="refresh" CONTENT="600;URL=logout.php?timeout">
在我logout.php頁我的代碼清除會話值和現在重定向到index.php page.But後得到重定向我只得到重定向到index.php頁面,會話值不會被破壞。
<?php
session_start();
// remove all session variables
session_unset();
// destroy the session
session_destroy();
echo ("<SCRIPT LANGUAGE='JavaScript'>
window.location.href='index.php';
</SCRIPT>");
?>
<?php session_start(); //刪除所有會話變量 session_unset(); $ _SESSION = array(); //銷燬會話 session_destroy(); /* echo(「」); * /如果我評論重定向代碼會話值被清除nw。 – user3386779 2015-03-02 06:20:05
您也可以嘗試清除會話cookie,如['session_destroy()'](http://php.net/manual/en/function.session-destroy.php)文檔頁面上的示例#1中所述)。 – axiac 2015-03-02 07:11:38
我無法使用頭重定向 – user3386779 2015-03-02 07:17:15