本文整理汇总了PHP中Select::fetch方法的典型用法代码示例。如果您正苦于以下问题:PHP Select::fetch方法的具体用法?PHP Select::fetch怎么用?PHP Select::fetch使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Select
的用法示例。
在下文中一共展示了Select::fetch方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: countRecords
/** obsolete, use DB::countRecords */
function countRecords($tnm, $where = array())
{
global $db;
$q = new Select($db, $tnm);
$q->addFields('COUNT(*)');
$q->addWhereArray($where);
$q->run();
$q->fetch();
$count = $q->at(0);
$q->close();
return $count;
}
示例2: fetch
/**
* Return the completed time widgets.
*/
function fetch()
{
$name = '%s[%s]';
$n['h'] = sprintf($name, $this->name, 'hour');
$n['m'] = sprintf($name, $this->name, 'min');
$n['e'] = sprintf($name, $this->name, 'ext');
$h = new Select($n['h'], $this->h, $this->hour, false, 1, null, $this->class);
$m = new Select($n['m'], $this->m, $this->min, false, 1, null, $this->class);
$e = new Select($n['e'], $this->e, $this->ext, false, 1, null, $this->class);
return $h->fetch() . ' : ' . $m->fetch() . $e->fetch();
}