I have problem when try to merge two array in PHP. For example I have:
(
[k] => Array
(
[aaaa] => 11
[bbb] => 22
)
)
And an array two follow:
(
[k] => Array
(
[ccc] => 333
[dddd] => 444
[eeee] => 555
[ffff] => 666
)
)
I want to merge two arrays above as follows:
(
[k] => Array
(
[aaaa] => 11
[bbb] => 22
[ccc] => 333
[dddd] => 444
[eeee] => 555
[ffff] => 666
)
)
When I try to array_push above as follows:
(
[0] => Array
(
[k] => Array
(
[aaaa] => 11
[bbb] => 22
)
)
[1] => Array
(
[k] => Array
(
[ccc] => 333
[dddd] => 444
[eeee] => 555
[ffff] => 666
)
)
)
So what can I will do, anyone?