Home >Backend Development >PHP Tutorial >php对象取值的事

php对象取值的事

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-23 13:08:443683browse

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;

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn