$result = Array
(
[0] => Array
(
[Product] => Array
(
[id] => 3
)
)
)
我有上面的数组,如何将其折叠为$result = 3
答案 0 :(得分:13)
$result = $result[0]['Product']['id']; // TA DA
答案 1 :(得分:1)
只做
$result = $result[0]['Product']['id']; // gives 3