|
对一个简单的php缓存类感兴趣的小伙伴,下面一起跟随脚本之家 jb51.cc的小编两巴掌来看看吧!
<?php
/**
* 一个简单的php缓存类
*
* @param
* @author 网: jb51.cc
* Class Cache
* @author Koen Ekelschot
* @license WTFPL
*/
class Cache {
private $cachedFile;
public function __construct($identifier) {
$this->cachedFile = ROOT.DS.'tmp'.DS.'cache'.DS.md5($identifier);
}
public function cacheExists($maxAge) {
if (file_exists($this->cachedFile) && !is_dir($this->cachedFile)) {
if (filemtime($this->cachedFile) + $maxAge > time()) {
return true;
} else {
$this->invalidateCache();
}
}
return false;
}
public function getCachedCopy() {
$contents = file_get_contents($this->cachedFile);
return unserialize(base64_decode($contents));
}
public function getCachedFilename() {
return str_replace(ROOT,'',$this->cachedFile);
}
public function cacheResult($result) {
if (file_exists($this->cachedFile) && !is_dir($this->cachedFile)) {
$this->invalidateCache();
}
$base64 = base64_encode(serialize($result));
file_put_contents($this->cachedFile,$base64);
}
private function invalidateCache() {
unlink($this->cachedFile);
}
}
/*** 来自脚本之家 jb51.cc(jb51.cc) ***/ (编辑:安卓应用网)
【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!
|