<?php
///кеширование
function cache($text){
$time = 86400;
$cache = 'cache/'.md5($_SERVER['REQUEST_URI']);
if(file_exists($cache) && time() - filemtime($cache) < $time){
echo file_get_contents($cache);
}else{
file_put_contents($cache,$text);
echo $text;
}
}
?>