我挣扎解析使用PHP下面的数据。 一个API返回它,我已经试过各种语法。 如何在一个非对象的方式返回的数据? 或者说,有什么语法来调用使用stdClass的数据?
难道我将它转换为一个基于数据阵列,或者甚至是两个? 当涉及到基于对象的数据集,我迷路了。
stdClass Object
(
[0] => stdClass Object
(
[district] => stdClass Object
(
[state] => NY
[number] => 29
)
)
[1] => stdClass Object
(
[district] => stdClass Object
(
[state] => NY
[number] => 26
)
)
)
当我创建我自己的对象,然后做的var_dump,我得到这样的:
object(stdClass)#8 (2) {
[0]=>
object(stdClass)#4 (1) {
["district"]=>
object(stdClass)#5 (2) {
["state"]=>
string(2) "NY"
["number"]=>
string(2) "29"
}
}
[1]=>
object(stdClass)#6 (1) {
["district"]=>
object(stdClass)#7 (2) {
["state"]=>
string(2) "NY"
["number"]=>
string(2) "26"
}
}
}