How to Limit the paginate in cakephp

前端 未结 5 1450
时光说笑
时光说笑 2021-01-17 23:58

How to Limit the paginate in cakephp ?

Assume that i have 400 records.
I need to get only 25 records from 50th record to 75th record and need to display 5 recor

5条回答
  •  情话喂你
    2021-01-18 00:24

    Use maxLimit in CakePHP v2.x .

    public $paginate = array(
        // other keys here.
        'maxLimit' => 10
    );
    

    read more about it here.

提交回复
热议问题