我有一个包含许多数组对象的数组.有没有办法在数组对象中插入一些东西,例如[d] = value4在数组对象[0]中?
Array ( [0] => stdClass Object (
[a] => value1
[b] => value2
[c] => value3 )
[1] => stdClass Object (
[a] => value1
[b] => value2
[c] => value3 )
)
Run Code Online (Sandbox Code Playgroud)