Mercurial > SimpleWebPresenter
view cache_check.inc @ 3:238c5127b78c
Generating language-bar.
| author | Tom Fredrik "BFG" Klaussen <bfg@blenning.no> |
|---|---|
| date | Tue, 10 May 2011 19:08:48 +0200 |
| parents | d2da64705bce |
| children | 6c0162497d56 |
line wrap: on
line source
<?php $if_modified_since = preg_replace('/;.*$/', '', $HTTP_IF_MODIFIED_SINCE); $mtime = filemtime($SCRIPT_FILENAME); $gmdate_mod = gmdate('D, d M Y H:i:s', $mtime) . ' GMT'; if ($if_modified_since == $gmdate_mod) { header("HTTP/1.0 304 Not Modified"); exit; } header("Last-Modified: $gmdate_mod"); ?>
