从关联数组php中获取不同的值

时间:2017-07-07 18:36:03

标签: php mysql arrays

我有一个SQL查询,它收集信息并将它们存储到变量中。从那里我使用while循环将sql查询结果添加到数组中。

    $array = [];
while ($rows = customfunction_fetch_array($res)){
    $array[] = $rows;
}

当我打印数组时,它看起来像这样。

Array([0]=> Array ([Fruit]=> apple [Count]=>4 [Season]=>Summer
      [1]=> Array ([Fruit]=> grape [Count]=>1 [Season]=>Fall
      [2]=> Array ([Fruit]=> apple [Count]=>3 [Season]=>Winter
      [3]=> Array ([Fruit]=> orange [Count]=>5 [Season]=>Spring
      [4]=> Array ([Fruit]=> apple [Count]=>45 [Season]=>All

我想要做的是循环我的数组并在指定的键上显示不同的值。例如,如果我想获得水果的所有不同值。在我遍历当前数组后,我的新数组应该看起来像

$newArray[apple,grape,orange]

0 个答案:

没有答案