会员登录 | 会员注册 | 意见建议 | 网站地图

站长资源综合门户

当前位置:首页 > 站长学院 > 编程程序 > 5 行 PHP 代码禁用 HTTP 缓存

5 行 PHP 代码禁用 HTTP 缓存

时间:2012-08-13 20:34:13   作者:   来源:   点击:

header("Content-Type: application/json");

header("Expires: 0");

header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");

header("Cache-Control: no-store, no-cache, must-revalidate");

header("Cache-Control: post-check=0, pre-check=0", false);

header("Pragma: no-cache");

分享到:

网友评论

热门编程程序