Skip to content

Instantly share code, notes, and snippets.

@xyqfer
Created September 28, 2013 07:38
Show Gist options
  • Select an option

  • Save xyqfer/6739577 to your computer and use it in GitHub Desktop.

Select an option

Save xyqfer/6739577 to your computer and use it in GitHub Desktop.
防止浏览器缓存
<?php
header("Expires: Tue, 01 Jul 2001 06:00:00 GMT");
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");
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment