kalitelihostorg adlı üyeden alıntı: mesajı görüntüle
Arkadaşlar sadece index sayfası için bir cache yapmak mümkün mü ?
10 Dk'da 1 yenileme yapılabilir.Ücretli ücretsiz yardım bekliyorum
<?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);
} 
?>

RESİM 1



RESİM 2



Denermisiniz hocam.