php 怎么禁止缓存?

2025-02-24 05:13:42
推荐回答(3个)
回答1:


header("Expires:-1");
header("Cache-Control:no-cache");
header("Pragma:no-cache");

?>

回答2:

你是不是想实现页面及时更新呀?

回答3:

你确定缓存不是因为浏览器的缓存造成的吗? 你改了服务器上的东西之后,强刷下页面试试