A simple thing to do, but I forgot how to convert
Array ( [0] => Array ( [hashcode] => 952316176c1266c7ef1674e790375419
Try this :
$array = array(array("test"=>"xcxccx"),array("test"=>"sdfsdfds")); $result = call_user_func_array('array_merge', array_map("array_values",$array)); echo ""; print_r($result);
"; print_r($result);
Output:
Array ( [0] => xcxccx [1] => sdfsdfds )