php 禁止页面缓存输出 2020-02-16 分类:PHP 标签Tags:php,禁止,页面,缓存,输出,实现,代码,如下,header,expires,mon,26,jul,1997,05,00,gmt,last,modified,gmdate
实现代码如下:<?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 禁止页面缓存输出】的全部内容了,欢迎留言评论进行交流!