Phalcon\Db\Result\Serializable::fetch PHP Méthode

fetch() public méthode

Fetches a row in the resultset
public fetch ( ) : array | boolean
Résultat array | boolean
    public function fetch()
    {
        if (!isset($this->data[$this->position])) {
            return false;
        }
        return $this->data[$this->position++];
    }