Intelligent PHP Cache Control
This code snippet checks if a page has been modified since it was last displayed. If so, it sends a "304 not modified" header and exits, otherwise the content is rendered. Prepend this snippet on top of every PHP file you want to apply this intelligent caching-mechanism. Especially useful if you (have to) serve static content via php and want it to be cached like ordinary HTML or CSS.
<?php
//get the last-modified-date of this very file
$lastModified=filemtime(__FILE__);
//get a unique hash of this file (etag)
$etagFile = md5_file(__FILE__);
//get the HTTP_IF_MODIFIED_SINCE header if set
$ifModifiedSince=(isset($_SERVER['HTTP_IF_MODIFIED_SINCE']) ? $_SERVER['HTTP_IF_MODIFIED_SINCE'] : false);
//get the HTTP_IF_NONE_MATCH header if set (etag: unique file hash)
$etagHeader=(isset($_SERVER['HTTP_IF_NONE_MATCH']) ? trim($_SERVER['HTTP_IF_NONE_MATCH']) : false);
//set last-modified header
header("Last-Modified: ".gmdate("D, d M Y H:i:s", $lastModified)." GMT");
//set etag-header
header("Etag: $etagFile");
//make sure caching is turned on
header('Cache-Control: public');
//check if page has changed. If not, send 304 and exit
if (@strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE'])==$lastModified || $etagHeader == $etagFile)
{
header("HTTP/1.1 304 Not Modified");
exit;
}
//your normal code
echo "This page was last modified: ".date("d.m.Y H:i:s",time());
?>
Hi,
does this code also work if i embed it in the header.php which is included in every file that could change?
Thanks in advance!
To keep this snippet in separate file only including in at the top of other files, you should probably change all occurrences of
__FILE__to$_SERVER['SCRIPT_FILENAME'].Can you please leave a short step-by-step tut on what variables need to be replaced and how to implement?
Much thanks!
Line with ETag should be:
header("ETag: \"$etagFile\"");
i’ve added your code to the very top of my pages and tested my pages at http://web-sniffer.net
they keep coming back with the Status: HTTP/1.1 200 OK no matter how many times i have web-sniffer.net revisit the page, without me touching my files on the server.
if your code was working in my page, i would see 200 OK on the first hit but the subsequent visits should say 304 (not modified), correct?
when i change the $ifModifiedSince= variable in your code from false to true, i get the 304 (not modified) every time, which does not seem correct since the first visit should return 200 OK, correct?
thank you!
This doesn’t work. The browser still shows the cached page even after an update has been made. The only way you can get the updated info is if you press F5
So any one can make this thing to work? it seems interesting.
Thank you
is there anyone who has used this code so far…????
Hello,
Yes, I have used the code on a production server for some CDN caching over a balanced proxy, works like a Charm.
You can test it easily with Chrome debugger or Firebug.
- Enjoy
Got this code to work, but only after throwing in these functions, which stop PHP from automatically adding the no-cache header.
session_cache_limiter(‘public’); //This stop php’s default no-cache
session_cache_expire(5); // Optional expiry time in minutes
Hi,
I put this code in a MVC app and works fine …
I put the code in the bootstrap file …
When I check with Chrome Debugger I notice that some of the resources get 200 OK status and almost everything get 304 Status …
My question is how can I set witch resource should cache and witch not?
This app has to update a the hits of a page each time somebody visit it … After the first time it does not update anymore …
I need to somehow control what resources should cache and be able to set for cache only resources like css,js,jquery,images …
Thanks