我有一个这样的数组:
$tmb = Array(
[xThis] => 12400
[fThat] => 7
[cMore] => Array(
[236] => Array(
[acting_person] => "Test info"
[tThings] => "history"
)
)
)
)
我知道如何调用 xThis(like $tmb['xThis'] 但是如何在这样的语句中调用 [acting_person] ?
$new = $tmb['xThis'] . $tmb['fThat'] . ??????????????????
对不起,如果这是基本的,我对 PHP 真的很陌生。谢谢。