Skip to content
Advertisement

Add data from second 2d array to first 2d array based on related id columns

I have two arrays $a and $b

JavaScript

AND

JavaScript

I am trying to create another array with mapping with id(array $a), a_id (array $b), where my output will looks like:

JavaScript

I have tried by array map

JavaScript

But this result is not my desire result. How can I map my 1st array with 2nd array related by $a['id'] = $b['a_id']?

Advertisement

Answer

This should work, also if there’s no price for an item in the array $b then the default price 0 will be added.

JavaScript

Result:

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement