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

numRows() public method

returns the number of rows returned by last query
public numRows ( object $result ) : string | integer
$result object result set identifier
return string | integer
    public function numRows($result);

Usage Example

 /**
  * returns the number of rows returned by last query
  *
  * @param object $result result set identifier
  *
  * @return string|int
  */
 public function numRows($result)
 {
     return $this->_extension->numRows($result);
 }