不言不语

您现在的位置是: 首页 >  PHP

PHP

Thinkphp6随机获取数据的写法

2022-06-05PHP
Thinkphp6随机获取数据的写法

Thinkphp6随机获取数据的写法需要使用到

orderRaw


获取随机文章写法

$randomList = NewsModel::where('status',1)->limit(6)->orderRaw("rand() , id DESC")->select();
View::assign('randomList',$randomList);


效果可以参考:https://www.liqingbo.com/news/show-46.html

文章评论