dscrb00804 2017-02-09 09:42
浏览 773
已采纳

Laravel 5:如何验证数据中是否包含以逗号分隔的数据库表字段中的值?

So, basically I have a field in a table from my database which contains some values separated by comma (something like: value1, value2, value3). I need to check somehow if one or more of these values are contained in an array of values and retrieve the model(s). I'd like a solution using Eloquent Model Query to achieve this, if not possible with Model Query, then a Query Builder solution will be okay as well, or maybe something alternative.

  • 写回答

1条回答 默认 最新

  • douweicheng5532 2017-02-09 10:23
    关注

    Tried to use a function inside the where statement where I loop the array of values and just query the model using like operator to check if field value matches the values from the array and in the end I got something like this:

    $devices = explode(",", Input::get("devices"));
    $products = Product::where(function ($q) use ($devices) {
       foreach ($devices as $device) {
          $q->orWhere("compatible_devices", "like", "%" . $device . "%");
       }
    })->get();
    

    Works quite well so far.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 在获取boss直聘的聊天的时候只能获取到前40条聊天数据
  • ¥20 关于URL获取的参数,无法执行二选一查询
  • ¥15 液位控制,当液位超过高限时常开触点59闭合,直到液位低于低限时,断开
  • ¥15 marlin编译错误,如何解决?
  • ¥15 有偿四位数,节约算法和扫描算法
  • ¥15 VUE项目怎么运行,系统打不开
  • ¥50 pointpillars等目标检测算法怎么融合注意力机制
  • ¥20 Vs code Mac系统 PHP Debug调试环境配置
  • ¥60 大一项目课,微信小程序
  • ¥15 求视频摘要youtube和ovp数据集