Skip to content
Advertisement

Adding an associative array to another associative array in PHP

I have two separate arrays.

Array 1:

JavaScript

and Array 2:

JavaScript

I don’t know how to make [value] in each array from Array 1 receive consecutive values from Array 2. What I need is this:

Array 1:

JavaScript

This is how Array 1 is created. It’s contained in $products_details[]:

JavaScript

This is how Array 2 is created:

JavaScript

The combination of both arrays should be contained in $items[].

Here is an example of what I have tried:

JavaScript

but it adds only the last value from Array 2:

JavaScript

Any help would be much appreciated.

Advertisement

Answer

Assuming all the arrays are all available. And I am assuming that Array 2: is the $basket_prices array

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