本文整理汇总了PHP中MySQLDatabase::numRows方法的典型用法代码示例。如果您正苦于以下问题:PHP MySQLDatabase::numRows方法的具体用法?PHP MySQLDatabase::numRows怎么用?PHP MySQLDatabase::numRows使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MySQLDatabase
的用法示例。
在下文中一共展示了MySQLDatabase::numRows方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: chkTicketExistance
/**
* Method for checking the existance of the ticket.
*
* @access public
* @param string The type of the search request.
* @param string Search request itself.
* @return int
*/
public function chkTicketExistance($type, $tbl_query)
{
$argsArray = func_get_args();
switch ($type) {
case "query":
$result = $this->db->numRows($tbl_query);
break;
case "table":
$countArgs = func_num_args() - 2;
$query = "SELECT * FROM " . $this->db->escapeVal($tbl_query) . " ";
if (fmod($countArgs, 2) == 0) {
$pairsCount = $countArgs / 2;
if ($pairsCount == 1) {
$value = is_string($argsArray[3]) ? "'" . $argsArray[3] . "'" : $argsArray[3];
$whereClause = $argsArray[2] . " = " . $value;
} else {
$i = 2;
$pair = 1;
while ($i <= $countArgs) {
$whereClause .= $argsArray[$i] . " = ";
$i++;
$value = is_string($argsArray[$i]) ? "'" . $argsArray[$i] . "'" : $argsArray[$i];
$whereClause .= $value;
if ($pair != $pairsCount) {
$whereClause .= " AND ";
}
$pair++;
$i++;
}
}
} else {
return false;
}
$query .= "WHERE " . $whereClause;
$result = $this->db->numRows($query);
break;
}
return $result;
}