本文整理汇总了PHP中ResultSet::getRowCount方法的典型用法代码示例。如果您正苦于以下问题:PHP ResultSet::getRowCount方法的具体用法?PHP ResultSet::getRowCount怎么用?PHP ResultSet::getRowCount使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ResultSet
的用法示例。
在下文中一共展示了ResultSet::getRowCount方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: makeDistinct
function makeDistinct($ar_limit)
{
$colNames = $this->getColumnNames();
// calc limit
if (!isset($ar_limit[0]) && !isset($ar_limit[1])) {
$limit = -1;
} else {
if (count($ar_limit) > 1) {
$limit = $ar_limit[0] + $ar_limit[1];
} else {
$limit = $ar_limit[0];
}
}
$rs = new ResultSet();
$rs->copyColumData($this);
$distinctRows = array();
$this->reset();
while (++$this->pos < count($this->rows)) {
$currentValues = array();
foreach ($colNames as $col) {
array_push($currentValues, md5($this->getCurrentValueByName($col)));
}
$joinedValues = join("-", $currentValues);
if (!array_key_exists($joinedValues, $distinctRows)) {
$distinctRows[$joinedValues] = 1;
$rs->append(false);
$rs->rows[$rs->pos]->fields = $this->rows[$this->pos]->fields;
$rs->rows[$rs->pos]->id = $this->rows[$this->pos]->id;
}
if ($limit != -1) {
if ($rs->getRowCount() >= $limit) {
break;
}
}
}
--$this->pos;
return $rs;
}