/** * 删除全部缓存 * * @return boolean */ public function delete_all() { try { return $this->driver->delete_all(); } catch (Exception $e) { $this->last_error_msg = $e->getMessage(); $this->last_error_no = $e->getCode(); return false; } }
/** * 删除全部缓存 * * @return boolean */ public function delete_all() { try { return $this->driver->delete_all(); } catch (Exception $e) { return false; } }