Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
- Петька, приборы!
- 20!
- Что 20?
- А что "приборы"?
<?php
// в переменной $r будем хранить результат вывода (или его же из кэша)
$r=<считываем из кэша>;
$last_updated = <получаем время последнего обновления кэша>;
// если кэш устарел (в примере 60 секунд * 60 минут * 24 часа = 1 сутки)
if ((time()-strtotime($last_updated))>60*60*24) {
// то формируем кэш
$r.="новый кэш";
}
echo $r;
?>
т.е. если кеш устарел он запиывается новым или нет?
php_value auto_prepend_file /home/username/public_html/start_cache.php
php_value auto_append_file /home/username/public_html/end_cache.php
<?php
// раздел настроек, которые вы можете менять
$settings_cachedir = '/home/username/public_html/cache_files/';
$settings_cachetime = 3600; //время жизни кэша (1 час)
// код
$thispage = 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
$cachelink = $settings_cachedir.md5($thispage).".html";
if (file_exists($cachelink)) {
$cachelink_time = filemtime($cachelink);
if ((time() - $settings_cachetime) < $cachelink_time) {
readfile($cachelink);die();
}
}
ob_start();
?>
<?php
$fp = fopen($cachelink, 'w');
fwrite($fp, ob_get_contents());
fclose($fp);
ob_end_flush();
?>