By submitting PHP Resources you own, or know of, you'll help us build the largest PHP Resource website on the net. Please double check that your resource doesn't already exist before you submit it!!. We thank you for helping make this a better website.
<?php
require_once "Cache/Lite/File.php";
$options = array(
'cacheDir' => '/tmp/',
'masterFile' => '/home/web/config.xml',
'pearErrorMode' => CACHE_LITE_ERROR_DIE
);
$cache = new Cache_Lite_File($options);
if ($data = $cache->get('id_of_the_page')) {
// Cache hit !
// Content is in $data
// (...)
} else {
// No valid cache found (you have to make and save the page)
// (...)
}
?>