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

numRows() public method

returns the number of rows returned by last query
public numRows ( mysqli_result $result ) : string | integer
$result mysqli_result result set identifier
return string | integer
    public function numRows($result)
    {
        // see the note for tryQuery();
        if (is_bool($result)) {
            return 0;
        }
        return @mysqli_num_rows($result);
    }