The definition and function of PHP file cache class

Source: Internet
Author: User
This article mainly introduces the PHP file cache class usage, in the case of the form of a more detailed analysis of the PHP file cache class definition, function and specific use of skills, very practical value, the need for friends can refer to the next

The examples in this article describe the PHP file cache class usage. Specific as follows:

<?php/** * Simple File Cache class * */class xzcache{//default cache time one hour var $cache _time = 3600;//default Cache dir var $cache _dir = './cache '; Public function __construct ($cache _dir=null, $cache _time=null) {$this->cache_dir = isset ($cache _dir)? $cache _dir: $  this->cache_dir; $this->cache_time = isset ($cache _time)? $cache _time: $this->cache_time; The Public Function Savecache ($key, $value) {if (Is_dir ($this->cache_dir)) {$cache _file = $this->cache_dir. '/xzcache_ '.   MD5 ($key);   $timedif = @ (Time ()-Filemtime ($cache _file));    if ($timedif >= $this->cache_time) {//cached file is too old, create new $serialized = Serialize ($value);     if ($f = @fopen ($cache _file, ' W ')) {fwrite ($f, $serialized, strlen ($serialized));    Fclose ($f);  }} $result = 1;   }else{echo "Error:dir is not exist.";  $result = 0; } return $result; }/** * @return array * 0 No Cache * 1 Cached * 2 Overdue * * Public Function GetCache ($key) {$Cache_file = $this->cache_dir. '/xzcache_ '.  MD5 ($key);   if (Is_dir ($this->cache_dir) && is_file ($cache _file)) {$timedif = @ (Time ()-Filemtime ($cache _file));   if ($timedif >= $this->cache_time) {$result [' cached '] = 2; }else{//Cached file is fresh enough, return cached array $result [' value '] = Unserialize (file_get_contents ($cache _f    ile));   $result [' cached '] = 1;   }}else {echo "Error:no cache";  $result [' cached '] = 0; } return $result; }}//end of Class

The usage examples are as follows:

$cache = new Xzcache (); $key = ' global '; $value = $GLOBALS; $cache->savecache ($key, $value); $result = $cache GetCache ($key); Var_dump ($result);

Summary : The above is the entire content of this article, I hope to be able to help you learn.

Related recommendations:

A brief description of the magic methods available in PHP

PHP Large-scale data submission method

How to use foreach () in PHP

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.