前端之家收集整理的这篇文章主要介绍了
php 缓存类的简单示例,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
对一个简单的
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) ***/
原文链接:https://www.f2er.com/php/528703.html