在PHP中附加子数组的正确方法

时间:2017-10-25 11:33:32

标签: php

我正在寻找一种在PHP中附加子数组的正确方法。如果我有这样的数组:

$arr = [
  'id' => 2,
  'anotherArr' => [
      'id' => 2.1
   ]
];

到目前为止,我有这个:

$arr['anotherArr'][] = "'Name' => 'Sam'";
也许这不合法。你能说出正确的方法吗?感谢

1 个答案:

答案 0 :(得分:4)

你几乎没错。

$arr['anotherArr']['Name'] = 'Sam';