Home > Article > Backend Development > photoshop cs5 official Chinese cracked version download php cache function code
Copy the code The code is as follows:
**
* @Description: File cache output
* @Parameter: $cachefile => cache file (absolute path)
* @Parameter: $pertime => cache Output interval
* @parameter: $sql => sql statement
* @parameter: $templatefile => template file name (absolute path)
* www.php100.com from
**/
function __cache($ cachefile,$pertime,$sql,$templatefile) {
global $db;
if(time() - @filemtime($cachefile) >= $pertime) {
$query = $db->query($sql );
while($r=$db->fetch($query)) {
$cachelist[] = $r;
}
include $templatefile.'.php';
$cacheserialize = serialize($cachelist) ;
file_put_contents($cachefile,$cacheserialize);
}else{
$cachelist = unserialize(file_get_contents($cachefile));
include $templatefile.'.php';
}
}
The above introduces photoshop cs5 official Chinese cracked version download PHP cache function code, including photoshop cs5 official Chinese cracked version download content, I hope it will be helpful to friends who are interested in PHP tutorials.