本文整理汇总了PHP中xPDOQuery::limit方法的典型用法代码示例。如果您正苦于以下问题:PHP xPDOQuery::limit方法的具体用法?PHP xPDOQuery::limit怎么用?PHP xPDOQuery::limit使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类xPDOQuery
的用法示例。
在下文中一共展示了xPDOQuery::limit方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: prepareQueryBeforeCount
/** {@inheritDoc} */
public function prepareQueryBeforeCount(xPDOQuery $c)
{
if ($this->getProperty('combo')) {
$c->limit(0);
$c->groupby('level');
}
return $c;
}
示例2: prepareQuery
/**
* Set parameters and prepare query
*
* @return PDOStatement
*/
public function prepareQuery()
{
if (!empty($this->config['limit'])) {
$time = microtime(true);
$this->query->limit($this->config['limit'], $this->config['offset']);
$this->addTime('Limited to <b>' . $this->config['limit'] . '</b>, offset <b>' . $this->config['offset'] . '</b>', microtime(true) - $time);
}
return $this->query->prepare();
}
示例3: prepareQuery
/**
* Set parameters and prepare query
*
* @return PDOStatement
*/
public function prepareQuery()
{
if ($limit = (int) $this->config['limit']) {
$offset = (int) $this->config['offset'];
$time = microtime(true);
$this->query->limit($limit, $offset);
$this->addTime('Limited to <b>' . $limit . '</b>, offset <b>' . $offset . '</b>', microtime(true) - $time);
}
return $this->query->prepare();
}