我有一个从 MySQL 检索到的 PHP 对象,它是一个对象数组,如下所示。
Array (
[0] => stdClass Object ( [question_id] => 1 [question_type] => multiple_choice [question_unit] => 7 [question_difficulty] => 56.5956047853 )
[1] => stdClass Object ( [question_id] => 2 [question_type] => multiple_choice [question_unit] => 7 [question_difficulty] => 54.665002232 )
[2] => stdClass Object ( [question_id] => 3 [question_type] => multiple_choice [question_unit] => 7 [question_difficulty] => 55.2923002984 )
)
我正在尝试解决如何用对象 [2] 替换对象 [0],或删除对象 [0] 并使其他对象索引减少 1。有没有一种好的/快速的方法来做到这一点,还是我只需要手动迭代并覆盖它吗?
是否有像这样在 PHP 中操作对象的教程(我可以很简单地对数组执行此操作,但找不到对象的类似函数/资源)。
提前致谢。