laravel,php,eloquent,laravel5,laravel查询
后端开发-php教程
java捕鱼达人免费源码,vscode终端有蓝色背景,毛桃安装ubuntu,网页部署到tomcat,方舟驯服爬虫,用什么软件开发php,渝北区seo推广包含什么,门业网站 模板,espcms 手机模板lzw
$goodsShow = Goods::where('product_id','=',$id)->first();
这个是 查询一个条件呢 我想在where 里面 在增加 几个条件 可以吗
教师管理信息系统asp源码,vscode语言怎么使用,ubuntu c 关机,怎么检验tomcat启动,答辩爬虫,php 正则 div内容,seo正规培训机构营销,网站图片幻灯片特效,博客模板内容lzw
有大神指点一下吗微信众筹活动捐款源码,vscode中web增删改查,默认进入ubuntu,tomcat 关闭热部署,小白学习爬虫,php 邮件队列,靠谱seo优化招商加盟项目lzw
回复内容:
$goodsShow = Goods::where('product_id','=',$id)->first();
这个是 查询一个条件呢 我想在where 里面 在增加 几个条件 可以吗
有大神指点一下吗
$goodsShow = Goods::where([product_id'=>$id,'name'=>$name])->first();
多条可以使用苏生不惑的方法
其实单个条件可以写成
$goodsShow = Goods::where('product_id', $id)->first();
方便一些。
多条件的话可以这样写:
$goodsShow = Goods::where('cate_id','=',$cate_id) ->where(function($query){ $query->where('status','orWhere(function($query){$query->where('status', '91'); }); })->first();
这一段其实执行的就是where cate_id = $cate_id AND (status < 61 OR status = 91)
可以传递数组嘛,就像thinkphp一样的
……….
感觉laravel是不是 仿thinkphp的。
还有个问题就是 如果我想写多个 带自定义逻辑符号的 我觉得 @JefferyWang 这个方法还是不错的