Basically my app is interacting with a web service that sends back a weird multidimensional array such as:
Array ( [0] => Array (
Like this:
$result = array(); foreach($array as $inner) { $result[key($inner)] = current($inner); }
The $result array would now look like this:
$result
Array ( [Price] => 1 [Size] => 7 [Type] => 2 )