Home  >  Article  >  Backend Development  >  photoshop cs5 official Chinese cracked version download php cache function code

photoshop cs5 official Chinese cracked version download php cache function code

WBOY
WBOYOriginal
2016-07-29 08:38:411811browse

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.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn