“间接修改SplFixedArray的过载元素没有效果”
为什么会出现以下情况
$a = new SplFixedArray(5);
$a[0] = array(1, 2, 3);
$a[0][0] = 12345; // here
var_dump($a);
生产
Notice: Indirect modification of overloaded element of SplFixedArray has no effect in <file> on line <indicated>
这是一个错误吗?那么,您如何处理多维 SplFixedArrays 呢?有什么解决方法吗?