To set the expiration time of a document, use the Expires header:
header('Expires: Fri, 18 Jan 2002 05:30:00 GMT');
To expire a document three hours from the time the page was
generated, use time( ) and gmstrftime(
) to generate the expiration date string:
$now = time( );
$then = gmstrftime("%a, %d %b %Y %H:%M:%S GMT", $now + 60*60*3);
header("Expires: $then");
To indicate that a document "never"
expires, use the time a year from now:
$now = time( );
$then = gmstrftime("%a, %d %b %Y %H:%M:%S GMT", $now + 365*86440);
header("Expires: $then");
To mark a document as already expired, use the current time or a time
in the past:
$then = gmstrftime("%a, %d %b %Y %H:%M:%S GMT");
header("Expires: $then");
This is the best way to prevent a browser or proxy cache from storing
your document:
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-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
For more information on controlling the behavior of browser and web
caches, see Chapter 6 of Web Caching, by Duane
Wessels (O'Reilly).