我正在从肥皂服务器接收一个stdClass数组。但是我不懂怎么读。
我像一个简单的数组一样尝试它,但是遇到了这个错误
Cannot use object of type stdClass as array
这是数组:
object(stdClass)#2 (1) {
["RegistrarResult"]=>
object(stdClass)#3 (23) {`enter code here`
["Anio"]=>
NULL
["BancaId"]=>
string(3) "WWW"
["Cedula"]=>
string(11) "SSSS"
["CodigoConsorcio"]=>
string(5) "EEEE"
["Color"]=>
NULL
["Error"]=>
NULL
}
}
答案 0 :(得分:0)
那是因为它是一个对象,而不是数组。使用->
访问数据。
赞
$nameOfStdClassVariable->RegistrarResult->BancaId
应返回“ WWW”