I have a problem in my array.
My array looks like this:
[[1,2,3,4],[5,6,7],[8,9,10,11,12]]
I have tried using array_merge()
to merge into one array.
I have tried to merge array with array_combine()
, but it still don't merge.
I want my array becomes like this:
[1,2,3,4,5,6,7,8,9,10,11,12]