成人AV在线无码|婷婷五月激情色,|伊人加勒比二三四区|国产一区激情都市|亚洲AV无码电影|日av韩av无码|天堂在线亚洲Av|无码一区二区影院|成人无码毛片AV|超碰在线看中文字幕

thinkphp5菜鳥教程 thinkphp怎么實(shí)現(xiàn)分頁(yè)排序?

thinkphp怎么實(shí)現(xiàn)分頁(yè)排序?$user=m(“user”)//實(shí)例化用戶對(duì)象$count=$user->where(“status=1”)->count()//查詢滿足要求的記錄總數(shù)$p

thinkphp怎么實(shí)現(xiàn)分頁(yè)排序?

$user=m(“user”)//實(shí)例化用戶對(duì)象

$count=$user->where(“status=1”)->count()//查詢滿足要求的記錄總數(shù)

$page=newthinkpage($count,25)//實(shí)例化傳入記錄的總數(shù)和每頁(yè)顯示的記錄數(shù)(25)

$show=$page->show()//顯示輸出頁(yè)

$list=$user->where(“status=1”)->order(“createTime desc”)->limit($page->firstrow)。", ". $page->listrows)->select()

$this->assign(“page”,$show)

非常簡(jiǎn)單,您可以試試