CodePaste Logo
New Snippet New Snippet Recent Snippets Recent Snippets My Snippets My Snippets Web Code Search Snippets Search
Sign inor Register
Format:
Recent snippets matching tags of cache
<?php
//Configuration
$cache_time = 60*3;        //second
$cache_file = "cache/".md5($_SERVER['REQUEST_URI']); 
 
if(file_exists($cache_file)) {
    if((time()-filemtime($cache_file)) < $cache_time) {
        $cache_data = file_get_contents($cache_file);
        if (!(strlen($cache_data) < 18 || strcmp(substr($cache_data,0,2),"\x1f\x8b"))) header( 'Content-Encoding: gzip' );
        echo $cache_data;
by Aummua   February 01, 2011 @ 6:59am
Tags: php, cache
135 Views
no comments
 
brought to you by:
West Wind Techologies



If you find this site useful and use it frequently please consider making a donation to support this free service.
Donate