多维数组中的数组条目数

时间:2013-11-27 18:58:00

标签: php arrays multidimensional-array

我是php的新手。请告诉我如何计算数组80cb936e55e5225cd2af下的数组条目数。

array
  'status' => int 1
  'msg' => string '2 out of 1 Transactions Fetched Successfully' (length=44)
  'transaction_details' => 
    array
      '80cb936e55e5225cd2af' =>
        array
          0 => 
            array
              ...
          1 => 
            array
              ... 

2 个答案:

答案 0 :(得分:0)

您可以像这样使用PHP count()

$noOfEntries = count($array['transaction_details']['80cb936e55e5225cd2af']);

这将获得80cb936e55e5225cd2af内的数组数量(不是元素的总数)。

答案 1 :(得分:0)

假设你的数组变量是$ arr:...

$count = count($arr['transaction_details']['80cb936e55e5225cd2af']);

(但这只会计算该子数组的索引/整数,而不是它们内部的值!)