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

fetchArray() public method

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

Usage Example

Exemplo n.º 1
0
 /**
  * returns array of rows with associative and numeric keys from $result
  *
  * @param object $result result set identifier
  *
  * @return array
  */
 public function fetchArray($result)
 {
     return $this->_extension->fetchArray($result);
 }