php清除浏览器缓存

来自于csdn帖子



简单版本:

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

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



复杂版本:

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");





你可能感兴趣的:(php清除浏览器缓存)