Say I have the following array of associative arrays:
$MasterArr = array(
array("food" => "apple", "taste" => "sweet"),
array("food" => "lemon", "taste" => "sour"),
array("food" => "steak", "taste" => "meaty")
);
Without using a foreach loop, is there a way that can I "chop" it into 2 different arrays whose values come from the same keys, so it looks like this:
$FoodArr = array("apple","lemon","steak");
$TasteArr = array("sweet","sour","meaty");