第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

為相等的鍵添加多個(gè)集合對(duì)象值

為相等的鍵添加多個(gè)集合對(duì)象值

PHP
慕碼人8056858 2024-01-19 15:45:58
我在集合實(shí)例中有多個(gè)具有相同鍵但不同值的對(duì)象。我需要一種在同一對(duì)象中添加數(shù)量字段鍵值的方法。[    0 => {      +"product_id": 1      +"quantity": "50"      +"price": "25.00"    },    1 => {      +"product_id": 3      +"quantity": "50"      +"price": "75.00"    },    2 => {      +"product_id": 2      +"quantity": "50"      +"price": "50.00"    },    3 => {      +"product_id": 3      +"quantity": "50"      +"price": "75.00"    }    ]生成的實(shí)例應(yīng)將數(shù)量添加到相同的項(xiàng)目鍵中,如下所示。[    0 => {      +"product_id": 1      +"quantity": "50"      +"price": "25.00"    },    1 => {      +"product_id": 2      +"quantity": "50"      +"price": "50.00"    }    2 => {      +"product_id": 3      +"quantity": "100"      +"price": "75.00"    }]我嘗試迭代所有對(duì)象并添加/編輯對(duì)象,如下所示。我不確定這是否是 Laravel 集合中的最佳實(shí)踐方式。$newItems = [];$items->each(function ($item, $key) use ($newItems) {    $existId = array_column($newItems, 'id');    if($existId){        // add quantity to the existing item    } else {        // push item to items array    }});
查看完整描述

1 回答

?
翻閱古今

TA貢獻(xiàn)1780條經(jīng)驗(yàn) 獲得超5個(gè)贊

您可以使用collection 方法?reduce創(chuàng)建一個(gè)新集合,您可以在其中添加尚未包含在新集合中的項(xiàng)目,或者對(duì)它們的數(shù)量求和:

$total = $items->reduce(

? // The function that will insert or add the items together.

? function ($carry, $item) {

? ? if ($carry->has($item->product_id)) {

? ? ? $carry[$item->product_id]->quantity += $item->quantity;

? ? } else {

? ? ? $carry[$item->product_id] = $item;

? ? }

? ? return $carry;

? },?

? // The initial empty collection that will be filled up every iteration.

? collect([])

);


查看完整回答
反對(duì) 回復(fù) 2024-01-19
  • 1 回答
  • 0 關(guān)注
  • 153 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)