Appearance
page()
分页查询数据,需要传两个参数,第几页和每页多少条
current
size
Db('user').page(1, 10).select()
最终的SQL语句为:
SELECT * FROM user LIMIT 0, 10