PHP - 折叠多维数组

时间:2011-11-22 14:07:39

标签: php arrays

$result = Array
          (
              [0] => Array
                     (
                         [Product] => Array
                                      (
                                          [id] => 3
                                      )

                     )

          )

我有上面的数组,如何将其折叠为$result = 3

2 个答案:

答案 0 :(得分:13)

$result = $result[0]['Product']['id']; // TA DA

答案 1 :(得分:1)

只做

$result = $result[0]['Product']['id']; // gives 3