10 Dk'da 1 yenileme yapılabilir.Ücretli ücretsiz yardım bekliyorum
11
●2.138
<?php
$dosya = "cacheler/index.php"; // Kaydedilecek yer.
$sure = 60 * 10; // Cache zamanı
if (!(file_exists($dosya)) || time() - $sure > filemtime($dosya))
{
?>
// İndex.php kodları buraya.
<?php
file_put_contents($dosya,ob_get_contents());
} else {
readfile($dosya);
}
?>
