PHP创建页面缓存(cache)代码如下
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");
?>
http://www.bkjia.com/PHPjc/486071.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/486071.htmlTechArticlePHP创建页面缓存(cache)代码如下 ?php header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); header("Cache-Control: no-cache, must-revalidate"); header("Pragma: no-cache"); ?...