1. 程式人生 > >tp5自定義分頁引數

tp5自定義分頁引數

程式碼示例:

$data = db('activity') -> where($condition1)-> order('startline desc') -> paginate(2,$total,[
			'page' => input('param.page'),
			'path'=>__ACTION__.'/channel/'.$channel.'/page/[PAGE].html',
		]);

 

來源:https://blog.csdn.net/lingchen__/article/details/70208219