-6

我有一个以下格式的多维数组:

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
  )
)

我一直试图获取这个数组并获取所有的“计数”值。即把上面的数组变成:

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

任何帮助将不胜感激。

4

1 回答 1

0

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

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

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

祝你好运!

于 2013-07-06T13:24:10.650 回答