0

我有这样的回应:

Array (
    [0] => Array (
            [0] => Array (
                    [Product] => 'Product1'
                    [Total] => $10
                   )
            [1] =>  Array (
                     [Product] => 'Product2'
                     [Total] => $50 
                   )
           )    
    [1] => Array (
           [0] => Array (
                   [Product] => 'Product1'
                   [Total] => $20
                  )
           [1] => Array (
                   [Product] => 'Product2'
                   [Total] => $30 
                  )
           )
    [2] => Array (
           [0] => Array (
                   [Product] => 'Product1'
                   [Total] => $0
                  )
           [1] => Array (
                   [Product] => 'Product2'
                   [Total] => $10 
           )
      )
 )

我想得到一个数组,TotalProduct1只使用laravel 集合

我努力了 :

$data = [];
    $collection = collect($monthly_usage_data)->each(function ($item, $key) {
            $data['Total'][$key] = str_replace('$', '', collect($item)->where('Product', 'Product1')->pluck('Total'));
            echo str_replace('$', '', collect($item)->where('Product', 'Product1')->pluck('Total'));
    });

当我打印 $data 它显示空白数组;当我在每个里面回响时,它会给出["10"]["20"]["0"]

有人可以告诉我使用集合获取数组的正确方法totalproduct1

4

2 回答 2

1

请记住,函数有自己的作用域。全局范围内的 $data 与函数内的 $data 不同,除非您导入它。

您可以使用以下方法将变量导入匿名函数:

function ($item, $key) use ($data) {

}
于 2017-05-19T21:16:29.360 回答
0

通常你可以使用这个:

$totals = $collection->where('Product', 'Product1')->mapWithKeys(function ($item) {
    return $item['Total'];
});

$totals->all();
于 2017-05-19T21:36:32.277 回答