Contao\Database\Result::fetchAssoc PHP 메소드

fetchAssoc() 공개 메소드

Fetch the current row as associative array
public fetchAssoc ( ) : array | false
리턴 array | false The row as associative array or false if there is no row
    public function fetchAssoc()
    {
        if ($this->intIndex >= $this->count() - 1) {
            return false;
        }
        $this->arrCache = $this->resultSet[++$this->intIndex];
        return $this->arrCache;
    }