Exemple #1
0
 public static function delete($key)
 {
     self::init($key);
     return ZOL_File::rm(self::$path);
 }
 /**
  * 删除文件缓存
  */
 public function rm($cacheParam = null)
 {
     $this->processParam($cacheParam);
     if (empty($this->_cachePath) || !file_exists($this->_cachePath)) {
         return false;
     }
     return ZOL_File::rm($this->_cachePath);
 }