PMA\libraries\dbi\DBIExtension::fetchRow PHP Method

fetchRow() public method

returns array of rows with numeric keys from $result
public fetchRow ( object $result ) : array
$result object result set identifier
return array
    public function fetchRow($result);

Usage Example

 /**
  * returns array of rows with numeric keys from $result
  *
  * @param object $result result set identifier
  *
  * @return array
  */
 public function fetchRow($result)
 {
     return $this->_extension->fetchRow($result);
 }