标签: php
我有一个需要转换为数组的对象,我该怎么做?
Array ( [0] => stdClass Object ( ...
答案 0 :(得分:4)
将对象转换为数组:
$array[0] = (array) $array[0];
这显然没有考虑到你发布的任何细节:P