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

php对象取值的事

WBOY
Release: 2016-06-23 13:08:44
Original
3675 people have browsed it

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;
Copy after login

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template