I keep data of customer's orders in $_SESSION['input'] multidimensional array, like this:
$_SESSION['input']['6']['s'] === 4 // This means the customer ordered 4x product with id 6 in size S.
With every new input submitted via $_POST['input'] (also a multidimensional array with the same format), I want to add and/or overwrite $_SESSION['input'] data with $_POST['input'] data.
The problem is:
- When I use $_SESSION['input'] = array_merge($_SESSION['input'],$_POST['input']), overwriting is correct but associative keys of the array are changed to numeric keys.
- When I use $_SESSION['input'] = $_SESSION['input'] + $_POST['input'], all keys are correctly preserved, but values are not overwritten for equal keys.
All answers I found are either for NOT overwriting values or for overwriting values without merging arrays.
Is there a function for this? Or some other idea?
I used ideas of Dave and mArm.ch and came up with a pretty simple solution.
The goal is to merge associative
$array1
and$array2
and overwrite$array1
with$array2
.The code:
So basically I delete keys from one array when there's an overlap and then I can simply add them.
Please make sure that both arrays
isset()
andis_array()
. Otherwise you get a fatal error.