object(stdClass)#3 (3) { ["errorCode"]=">
当前位置:Gxlcms > PHP教程 > php对象取值的事

php对象取值的事

时间:2021-07-01 10:21:17 帮助过:64人阅读

var_dump($aaa); 输出如下:

object(stdClass)#2 (1) {
["return"]=>
object(stdClass)#3 (3) {
["errorCode"]=>
int(0)
["errorMessage"]=>
string(0) ""
["onlineUserCount"]=>
int(6139)
}
}


如何获取 6139 这个数值呢?


回复讨论(解决方案)

echo $aaa->return->onlineUserCount;

人气教程排行