码迷,mamicode.com
首页 > 其他好文 > 详细

laravel take(3) 读取最近三条信息

时间:2019-07-22 15:20:28      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:style   pre   文章   table   tab   class   where   ice   art   

laravel take(3) 读取最近三条信息

   //优惠文章列表
        $articel_list = DB::table(‘articles‘)->where([[‘is_delete‘, ‘=‘, ‘0‘],
    [‘cat_id‘, ‘=‘, ‘5‘],
])->select(‘title‘, ‘article_id‘,‘image‘)->orderBy(‘article_id‘, ‘desc‘)->take(3)->get()->toArray();
        foreach ($articel_list as $key => $value) {
            $articel_list[$key] = (array) $value;
        }

 

laravel take(3) 读取最近三条信息

标签:style   pre   文章   table   tab   class   where   ice   art   

原文地址:https://www.cnblogs.com/kaka666/p/11225783.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!