I have an array which is multidimensional for no reason
/* This is how my array is currently */ Array ( [0] => Array ( [0] => Array
For this particular case, this'll do:
$array = array_map('current', $array[0]);
It's basically the exact same question is this one, look at some answers there: PHP array merge from unknown number of parameters.