[كود] عمل كاش بسيط لاي صفحه
مرسل: 29 مارس 2009, 02:43
هذه طريقة سهله لعمل كاش لاي صفحة
cache/index-cached.html
مسار الصفحة المحفوظه
$cacheTime
وقت حفظ الصفحة
/* Heres where you put your page content */
نضع هنا محتوى صفحتنا
كود: تحديد الكل
<?php
$cacheFile = 'cache/index-cached.html';
$cacheTime = 4 * 60;
// Serve the cached file if it is older than $cacheTime
if (file_exists($cacheFile) && time() - $cacheTime < filemtime($cacheFile)) {
include($cacheFile);
exit;
}
// Start the output buffer
ob_start();
/* Heres where you put your page content */
// Cache the contents to a file
$cached = fopen($cacheFile, 'w');
fwrite($cached, ob_get_contents());
fclose($cached);
ob_end_flush(); // Send the output to the browser
?>
مسار الصفحة المحفوظه
$cacheTime
وقت حفظ الصفحة
/* Heres where you put your page content */
نضع هنا محتوى صفحتنا