Gdn_DataSet::row PHP Метод

row() публичный Метод

Returns the requested row index as the requested row type.
public row ( integer $RowIndex ) : mixed
$RowIndex integer The row to return from the result set. It is zero-based.
Результат mixed The row at the given index or FALSE if there is no row at the index.
    public function &row($RowIndex)
    {
        $Result =& $this->result();
        if (isset($Result[$RowIndex])) {
            return $Result[$RowIndex];
        }
        return $this->_EOF;
    }