Gdn_DataSet::numRows PHP Method

numRows() public method

Returns the number of rows in the DataSet.
public numRows ( string $DatasetType = false )
$DatasetType string The format in which the result should be returned: object or array.
    public function numRows($DatasetType = false)
    {
        $Result = count($this->result($DatasetType));
        return $Result;
    }