精品久久看,欧美成人久久一级c片免费,日本加勒比在线精品视频,国产一区二区三区免费大片天美,国产成人精品999在线,97理论三级九七午夜在线观看

當前位置: 首頁編程開發PHP → 史上最簡單方便的PHP緩存類代碼

史上最簡單方便的PHP緩存類代碼

更多

大家都知道網上關于 PHP 緩存類的資料灰常多,不過這類算是目前我見過的既能滿足需求,但又無比簡潔的一個。好了,不跟大家廢話了,咱們直接看代碼吧!

使用說明:

1、實例化

$cache = new Cache();

2、設置緩存時間和緩存目錄

$cache = new Cache(60, '/any_other_path/');

第一個參數是緩存秒數,第二個參數是緩存路徑,根據需要配置。
默認情況下,緩存時間是 3600 秒,緩存目錄是 cache/

3、讀取緩存

$value = $cache->get('data_key');

4、寫入緩存

$value = $cache->put('data_key', 'data_value');

完整實例:

$cache = new Cache();

//從緩存從讀取鍵值 $key 的數據
$values = $cache->get($key);

//如果沒有緩存數據
if ($values == false) {
//insert code here...
//寫入鍵值 $key 的數據
$cache->put($key, $values);
} else {
//insert code here...
}

Cache.class.php

<?php
class Cache {
private $cache_path;//path for the cache
private $cache_expire;//seconds that the cache expires

//cache constructor, optional expiring time and cache path
public function Cache($exp_time=3600,$path="cache/"){
$this->cache_expire=$exp_time;
$this->cache_path=$path;
}

//returns the filename for the cache
private function fileName($key){
return $this->cache_path.md5($key);
}

//creates new cache files with the given data, $key== name of the cache, data the info/values to store
public function put($key, $data){
$values = serialize($data);
$filename = $this->fileName($key);
$file = fopen($filename, 'w');
if ($file){//able to create the file
fwrite($file, $values);
fclose($file);
}
else return false;
}

//returns cache for the given key
public function get($key){
$filename = $this->fileName($key);
if (!file_exists($filename) || !is_readable($filename)){//can't read the cache
return false;
}
if ( time() < (filemtime($filename) + $this->cache_expire) ) {//cache for the key not expired
$file = fopen($filename, "r");// read data file
if ($file){//able to open the file
$data = fread($file, filesize($filename));
fclose($file);
return unserialize($data);//return the values
}
else return false;
}
else return false;//was expired you need to create new
}
}
?>

熱門評論
最新評論
昵稱:
表情: 高興 可 汗 我不要 害羞 好 下下下 送花 屎 親親
字數: 0/500 (您的評論需要經過審核才能顯示)
主站蜘蛛池模板: 国产精品一区二区不卡小说 | 国产黄色免费看 | 久久精品a一国产成人免费网站 | 狠狠干精品 | 91久久精品日日躁夜夜躁欧美 | 中文字幕热久久久久久久 | 男人的天堂色 | 日韩视频一区 | 青青草色久综合网 | 国产精品免费网站 | 免费福利在线观看 | 国产男女 爽爽爽爽视频 | 久久久久国产一级毛片高清片 | 午夜美女视频在线观看高清 | 天使萌一区二区在线观看 | 日韩欧美自拍 | 国产精品久久久亚洲456 | 精品国产福利一区二区在线 | 青草青视频在线观看 | 国产偷国产偷在线高清 | 欧美亚洲综合在线 | 99精品国产免费久久久久久下载 | 欧洲一区在线观看 | 激情五月婷婷在线 | 国产精品毛片在线更新 | 人人草在线观看 | 99精品久久99久久久久久 | 久久99精品免费视频 | 亚洲欧美成人综合久久久 | 久久精品国产一区 | 免费在线观看黄视频 | 亚洲婷婷综合网 | 男人的天堂在线观看 | 精品一区二区在线观看 1080p | 国产成人小视频在线观看 | 久久久久久国产视频 | 免费看成人播放毛片 | 巴黎初体验 | a级毛片免费高清毛片视频 真正免费一级毛片在线播放 | 欧美一区在线观看视频 | 一级毛片在线播放 |