/** * 删除数据库中的此条记录 * @return unknown_type */ function delete() { $this->db->delete($this->_current_id, $this->table, $this->primary); }
/** * 删除数据库中的此条记录 * @return bool */ function delete() { if ($this->db->delete($this->_current_id, $this->table, $this->primary) === false) { return false; } $this->_delete = true; $this->notify(); return true; }