, . , - , , , - , , ( URL-), ( ) .
, . 20 .
php? HTML-?
,
, ? ? , , , .
? :
<?php
$cached=md5($_SERVER['REQUEST_URI']);
$lastmod=time() - @mtime($cache_dir . $cached)
if ((file_exists($cache_dir . $cached)) && (60 < $lastmod)) {
print file_get_contents($cache_dir . $cached);
exit;
} else {
ob_start();
... do slow expensive stuff
$output=ob_get_contents();
print $output;
file_put_contents($output, $cache_dir . $cached);
}
?>
, , .
, , - - , , , .
.
.