Is there an idiomatic way (some existing function) to reduce
[[0 => 'zero'], [1 => 'one']]
to
[0 => 'zero', 1 => 'one']
?
It is easy to just create a loop that does the job, but it seems inefficient, and I would clearly prefer a one-liner here.
Edit: Oh, and it is just random here that 0 and 1 follow each other. The array could also be [[2 => 'two'], [3 => 'three']]