1. 首页
  2. 移动开发
  3. 其他
  4. PHP实现的缓存类库.zip

PHP实现的缓存类库.zip

上传者: 2020-07-22 12:25:20上传 ZIP文件 2.35KB 热度 17次
<?php class Cache {   private $dir;   private $lifetime;   private $cacheid;   private $ext;   function __construct($dir='',$lifetime=1800) {     if ($this->dir_isvalid($dir)) {       $this->dir = $dir;       $this->lifetime = $lifetime;       $this->ext = '.Php';       $this->cacheid 
用户评论