PHP · 2009年11月28日 0

AJAX防止浏览器缓存

其实吧,挺简单的

<?php
ob_end_clean();    //终止并清除php的缓冲输出
ob_start();    //其实这里可以没有这个,不过如果要操作cookie或者session还是加上
@header("Expires: -1");
@header("Cache-Control: no-store, private, post-check=0, pre-check=0, max-age=0", FALSE);
@header("Pragma: no-cache");
@header("Content-type: text/html; charset=utf-8");
//Your code here...
?>