选择语言 :

 Module_Database_Result::offsetGet

Implements [ArrayAccess::offsetGet], gets a given row.

$row = $result[10];

mixed Module_Database_Result::offsetGet( )
返回值
  • mixed
File: ./modules/database/result.class.php
public function offsetGet($offset)
{
    if ( $this->seek($offset) ) return null;

    return $this->current();
}