首页 > 其他 > 详细

tp5 高效率随机抽取数据(不重复)

时间:2018-03-26 21:52:37      阅读:484      评论:0      收藏:0      [点我收藏+]
public function getRandTable(){
    $num = 5;    //需要抽取的默认条数
    $table = ‘t_marclog‘;    //需要抽取的数据表
    $countcus = Db::name($table)->count();    //获取总记录数
    $min = Db::name($table)->min(‘id‘);    //统计某个字段最小数据
    if($countcus < $num){$num = $countcus;}
    $i = 1;
    $flag = 0;
    $ary = array();
    while($i<=$num){
        $rundnum = rand($min, $countcus);//抽取随机数
        if($flag != $rundnum){
            //过滤重复 
            if(!in_array($rundnum,$ary)){
                $ary[] = $rundnum;
                $flag = $rundnum;
            }else{
                $i--;
            }
            $i++;
        }
    }
    $list = Db::name($table)->where(‘id‘,‘in‘,$ary,‘or‘)->select();
    $this->assign(‘list‘, $list);
}

转载于:http://www.tjcms.top/index/show/id/144

tp5 高效率随机抽取数据(不重复)

原文:https://www.cnblogs.com/leilei-1/p/8654168.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!