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

fetchAssoc() public method

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

Usage Example

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