Contao\Model\Collection::row PHP 메소드

row() 공개 메소드

Return the current row as associative array
public row ( ) : array
리턴 array The current row as array
    public function row()
    {
        if ($this->intIndex < 0) {
            $this->first();
        }
        return $this->arrModels[$this->intIndex]->row();
    }