我有一个 php 脚本,它可以提取 json 数据,如下所示:
$request = new HTTP_Request2('https://fakeurl.com/stuff', HTTP_Request2::METHOD_GET);
$request->setHeader('Authorization', 'Bearer ' . $access_token);
$response = $request->send();
$data = json_decode($response->getBody());
如果我打印出数据,我有这样的对象:
array(12) {
[0]=>
object(stdClass)#16 (3) {
["userId"]=>
string(3) "123"
["anotherId"]=>
string(3) "456"
["boolValue"]=>
bool(false)
}
}
我怎样才能访问这里的数据?我已经尝试过
$data = json_decode($response, true));
但$response
不是字符串变量。
谢谢!