fetchAssoc() 공개 메소드

returns array of rows with associative keys from $result
public fetchAssoc ( object $result ) : array
$result object result set identifier
리턴 array
예제 #1
0
 /**
  * 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);
 }