在有分页的情况下,limit的位置已经被分页占了。。。可以由多个limit吗?
怎么限制返回“头500”条数据
getTpPage,是TP的原装的分页类。
$count = $questions -> where($condition) -> count();
$psize = 3;
//total records and pagesize
$p = getTpPage($count, $psize);
$quesLists = $questions -> field(true) -> where($condition) -> order('post_id desc') -> limit($p -> firstRow, $p -> listRows) -> select();
你分页都限制条数了,还怎么限制500条。。