Gdn_DataSet::numRows PHP Метод

numRows() публичный Метод

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;
    }