Hi,
Ive got an array of arrays:
Array
(
[0] => Array
(
[0] => 278
[1] => 279
[2] => 280
[3] => 281
)
[1] => Array
(
[0] => 282
[1] => 283
[2] => 284
[3] => 285
)
[2] => Array
(
[0] => 286
[1] => 287
[2] => 288
[3] => 289
)
)
and i would like to convert it into a single array, like:
Array
(
[0] => 278
[1] => 279
[2] => 280
[3] => 281
[4] => 282
[5] => 283
[6] => 284
[7] => 285
[8] => 286
[9] => 287
[10] => 288
[11] => 289
)
is there a function that will do this?