I have an array
Array
(
[0] => Array
(
[0] => 3
[1] => 8
[2] => 4
[3] => 1
[4] => 6
[5] => 5
[6] => 9
[7] => 13
[8] => 25
[9] => 26
[10] => 14
[11] => 7
[12] => 27
[13] => 10
)
[1] => Array
(
[0] => 12
)
)
which I want to convert to a single array -
array(3,8,4,1 ...,27,10, 12);
I've tried array_merge_recursive($arrayProduct); and array_merge but can't get either of them to work