<?php $products = [ 1031 => [ 'id' => '1031', 'name' => 'TR16', 'price' => 98.75 ], 1032 => [ 'id' => '1032', 'name' => 'TR16G', 'price' => 148.75 ] ]; $newItemIds = [ 1031 => [ 'id' => 1031, 'quantity' => 4 ], 1032 => [ 'id' => 1032, 'quantity' => 2 ] ]; $products_with_quantity = array_replace_recursive($products, $newItemIds); print_r($products_with_quantity);
You have javascript disabled. You will not be able to edit any code.