php 禁止页面缓存输出
程序员文章站
2023-04-07 15:58:41
复制代码 代码如下:
<?php
header('expires: mon, 26 jul 1997 05:00:00 gmt');
header('last-modified: ' . gmdate('d, d m y h:i:s') . 'gmt');
header('cache-control: no-cache, must-revalidate');
header('pragma: no-cache');
?>
复制代码 代码如下:
<?php
header('expires: mon, 26 jul 1997 05:00:00 gmt');
header('last-modified: ' . gmdate('d, d m y h:i:s') . 'gmt');
header('cache-control: no-cache, must-revalidate');
header('pragma: no-cache');
?>