이 글에서는 캐시 사용 방법을 더 잘 이해하는 데 도움이 되기를 바라며 주로 PHP 캐시 클래스 예제에 대한 자세한 설명을 공유합니다.
추천 매뉴얼: php 완전 자율 학습 매뉴얼
1. 인스턴스화
$cache = new Cache();
2. 캐시 시간 및 캐시 디렉토리 설정
$cache = new Cache(60, '/any_other_path/');
첫 번째 매개변수는 캐시 초입니다. 매개변수는 필요에 따라 구성할 수 있는 캐시 경로입니다.
기본적으로 캐시 시간은 3600초이고, 캐시 디렉터리는 캐시/
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... }
<?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 } } ?>
추천 관련 글 :
1.TP5 캐시의 원리와 사용법
2.php 데이터 캐싱 캐시 클래스(다운로드)
관련 영상 추천:
1.Dugu Jiujian (4)_PHP 영상 튜토리얼
위 내용은 PHP 캐시 클래스 인스턴스에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!