I'm trying to merge two arrays together, however I can't figure out how.
1st Array:
Array
(
[0] => a
[1] => b
[2] => c
)
2nd Array:
Array
(
[0] => 1
[1] => 1
)
What I'm trying to achieve:
Array
(
[0] => Array
(
[0] => a
[1] => 1
)
[1] => Array
(
[0] => b
[1] => 1
)
[2] => Array
(
[0] => c
)
)
I know this is very simple to achieve, but my brain refuses to cooperate. Maybe I need more coffee...
// Thanks for all the downvotes :)