Php array problem

$a=array ("2");
$b=array ("axiom = >" 3");
replace the values of the same keys in two arrays.

how to become
$c=array ("axiom = >" 3century grammatical = >"2");

except for the array_merge () function.

Php
May.22,2021

Direct array_merge
`$c=array_merge ($a, $b);

)

all of the above are crossed out, hehe


$c = $b + $a;    // array_merge
Menu