Phalcon\Db\Result\Serializable::fetch PHP 메소드

fetch() 공개 메소드

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