i have some problem how merger this array. could help me ?
First array :
Array
(
[22] => WP_Post Object
(
[ID] => 22
[post_author] => 1
)
[23] => WP_Post Object
(
[ID] => 23
[post_author] => 1
)
)
Second array :
Array
(
[0] => stdClass Object
(
[img_thumb] => small_duck.jpg
[img_full] => duck.jpg
)
[1] => stdClass Object
(
[img_thumb] => small_fish.jpg
[img_full] => fish.jpg
)
)
Should OutPut :
Array
(
[22] => WP_Post Object
(
[ID] => 22
[post_author] => 1
[img_thumb] => small_duck.jpg
[img_full] => duck.jpg
)
[23] => WP_Post Object
(
[ID] => 23
[post_author] => 1
[img_thumb] => small_fish.jpg
[img_full] => fish.jpg
)
)
The array key follow first array,