I am Having an mutidimensional array getting result like given below
Array ( [0] => Array ( [0] => 70 ) [1] => Arra
You can use array_walk_recursive() for that coupled with a closure:
array_walk_recursive()
$res = array(); // initialize result // apply closure to all items in $data array_walk_recursive($data, function($item) use (&$res) { // flatten the array $res[] = $item; }); print_r($res); // print one-dimensional array