Swoole\Record::delete PHP Method

delete() public method

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