本文整理匯總了PHP中Criteria::limit方法的典型用法代碼示例。如果您正苦於以下問題:PHP Criteria::limit方法的具體用法?PHP Criteria::limit怎麽用?PHP Criteria::limit使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Criteria
的用法示例。
在下文中一共展示了Criteria::limit方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: testLimit
/**
* @covers Gacela\Criteria::limit
*/
public function testLimit()
{
$this->object->limit(0, 50);
$this->assertAttributeSame(array(array('limit', 0, 50)), '_criteria', $this->object);
}
示例2: BlogPostRepository
<?php
$repository = new BlogPostRepository();
$criteria = new Criteria();
$criteria->equals('BlogPost.ID', $blog_post_id);
$criteria->limit($limit);
$related_blog_poasts = $repository->getTagRelated($criteria);
示例3: get_list
public function get_list(Criteria $criteria = null)
{
if (!$criteria) {
$criteria = new Criteria();
}
if ($criteria->order()) {
$this->db->order_by($criteria->order());
}
if ($criteria->limit()) {
$this->db->limit($criteria->limit(), $criteria->offset());
}
$this->_prepare_fields($criteria);
$this->_prepare_from();
$this->_prepare_where($criteria);
if ($this->_debug) {
$res = $this->db->get();
log_message('debug', $this->db->last_query());
return $res->result_array();
}
$result = $this->db->get();
if ($result === false) {
throw new Exception($this->db->_error_message());
}
return $result->result_array();
}