在PHP中,如何销毁会话并关闭窗口?

时间:2013-05-21 11:58:21

标签: php javascript html window

我想关闭标签以及破坏php中的会话。

我有这段代码,但效果不好。

<?php
session_start();
session_destroy();
?>

<script language="javascript"> 

setTimeout("self.close();",10000) 

</script>

帮助通过, 感谢。

编辑:它没有按预期关闭窗口。

2 个答案:

答案 0 :(得分:1)

function openWin()
{
myWindow=window.open("","","width=200,height=100");
myWindow.document.write("<p>This is 'myWindow'</p>");
}

function closeWin()
{
myWindow.close();
}

答案 1 :(得分:1)

希望您尝试使用firefox浏览器进行测试

在firefox中,您只能通过脚本window.open()调用打开的JavaScript关闭窗口。

请参阅以下链接

Close firefox

尝试使用Internet Explorer。