以下のようなjsonデータを取り込むphpスクリプトがあります。
$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
、文字列変数ではありません。
ありがとう!