php 禁止页面缓存输出
时间:2022-03-31 08:33:48|栏目:PHP代码|点击: 次
复制代码 代码如下:
<?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');
?>