按键创建数组值数组

时间:2013-07-06 13:17:58

标签: php arrays

我有一个多维数组,格式如下:

Array
(
[0] => Array
  (
  [title] => First
  [count] => 765
  [description] => Description
  )
[1] => Array
  (
  [title] => Second
  [count] => 90
  [description] => Description
  )
[2] => Array
  (
  [title] => Third
  [count] => 1080
  [description] => Description
  )
)

我试图接受这个数组并获得所有'count'值。也就是说,将上面的数组转换为:

Array (
[0] => 765
[1] => 90
[2] => 1080
)

非常感谢任何协助。

1 个答案:

答案 0 :(得分:0)

我可以为你编写代码,但这感觉不对。让我指出你正确的方向。

从这里开始:http://php.net/manual/en/control-structures.foreach.php

您可以使用键值foreach迭代数组,并使用每个数组项(另一个数组)来访问计数并创建新数组。

祝你好运!