php 禁止页面缓存输出

PHP100 2019-03-27

代码如下:

<?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'); 
?>

相关推荐

张立军的架构之路 / 0评论 2017-12-28