I have an array which is multidimensional for no reason
/* This is how my array is currently */ Array ( [0] => Array ( [0] => Array
Try this it works for me:
$newArray = array(); foreach($operator_call_logs as $array) { foreach($array as $k=>$v) { $newArray[$k] = $v; } }