用户
 找回密码
 入住 CI 中国社区
搜索
查看: 1544|回复: 1
收起左侧

[HELP] $this->db->limit无法使用【求】

[复制链接]
发表于 2015-8-17 14:25:04 | 显示全部楼层 |阅读模式
使用$this->db->limit($start,$limit);查询不到结果,换成$query = $this->db->get_where($table,$condition,$start,$limit);也是查询不到结果,求解决
发表于 2015-8-18 21:08:20 | 显示全部楼层
貌似CI的这个limit有点诡异,应该不是说诡异,你看看他文档怎么说的。第二个参数是用于偏移,你这两个参数应该反过来写。
// Produces: LIMIT 20, 10 (in MySQL.  Other databases have slightly different syntax)
$this->db->limit(10, 20);

本版积分规则