PHP注销脚本不起作用

时间:2018-07-12 00:28:03

标签: php

我有一个注销脚本,该脚本试图清除所有会话数据。每当我这样做时,我都可以导航回任何页面,并且变量仍在使用中。

In [39]: ord("'")
Out[39]: 39
In [40]: ord("’")
Out[40]: 8217

1 个答案:

答案 0 :(得分:1)

您应该在登录时更改的页面上禁用缓存

header("Cache-Control: no-cache, no-store, must-revalidate"); // HTTP 1.1.
header("Pragma: no-cache"); // HTTP 1.0.
header("Expires: 0 "); // Proxies.

此代码来自prevent browser back button cache