在laravel中使用数组值选择数据库表

问题描述 投票:0回答:1

我有这个排序后的数组,其中包含前 5 个产品

foreach ($bestsellers as $item) {
      $data = json_decode($item->order_details, true);
      $product_ids[] = key($data);
}
      arsort($product_ids);
      $three = array_unique(array_slice($product_ids, 0, 5, true));
      print_r($three);

结果是

Array
(
    [0] => 1 
    [1] => 2 
    [2] => 3 
    [3] => 4 
    [4] => 5
)

1,2,3,4,5
是产品 ID。是否可以在产品表查询中使用此值,以便我可以在页面上显示有关产品的更多信息。不只是身份证。

类似

Product::where('product_id', $value);

更新

$best = Product::whereIn('product_id', $three)->get();

foreach($best as $info)
{
    dd($info->title);
}
php arrays laravel laravel-4
1个回答
0
投票

是的,您应该使用

whereIn
作为数组。事实上,
whereIn
将第二个参数作为指定列的值数组。

Product::whereIn('product_id', $value);

whereIn()

whereIn 方法验证是否包含给定列的值 在给定数组内:

© www.soinside.com 2019 - 2024. All rights reserved.