0
對不起我的純英文。 我需要計算一個數組的子節點。我的數組輸出如下。 我能夠計算第一步,但我需要計算第二步中的[地址]值。計數數組的孩子
Array
(
[0] => Array
(
[name] => John Doe
[address] => Array
(
[0] => Los Angeles
[1] => San Francisco
)
[presenter] => Array
(
[0] => 1
)
)
[1] => Array
(
[name] => Jane Doe
[address] => Array
(
[0] => New York
[1] => Chicago
)
[presenter] => Array
(
[0] => 0
)
)
)
'$計數=計數($ myarray的[0] [ '地址'];' –
非常感謝你對你的答案就像一個魅力:)。 – InTeGeR