I am working inside a php application whose classes and namespaces are causing an issue where
$array=array_merge($a,$b)
gives me
Array
(
[0] => Array
(
[blue shoes] => 1464873
[white shoes] => 2079
[red shoes] => 0.1419
[pink shoes] => 115
)
[1] => Array
(
[black dress shoes] => 527471
[white dress shoes] => 42.5232
)
)
*****Starting from that array how exactly would I get*****
Array
(
[0] => Array
(
[blue shoes] => 1464873
[white shoes] => 2079
[red shoes] => 0.1419
[pink shoes] => 115
[black dress shoes] => 527471
[white dress shoes] => 42.5232
)
)