1. 首页
  2. 移动开发
  3. 其他
  4. 文件缓存的php类库.zip

文件缓存的php类库.zip

上传者: 2020-07-30 18:23:21上传 ZIP文件 1.45KB 热度 22次
<?php class CacheLayer{   protected $root = "";   protected $cache = "";   protected $key = "";   protected $life = 0;   public function __construct($key, $root = "/cachelayer"){     $this->root = $_SERVER["DOCUMENT_ROOT"].$root;     $this->key = $key;   }   public function expired($lif
用户评论