尝试在访问PHP中的数据时获取非对象的属性“插槽”

时间:2019-09-08 12:41:42

标签: php laravel guzzlehttp

我正在尝试使用guzzle http从外部api提取数据。这是我的代码

$res = $client->request('GET', 'api/endpoint/');
$contents = $res->getBody()->getContents();
return $contents->slots; // THIS LINE GIVES ME ERROR. TRYING TO ACCESS THE SLOT. 

我刚返回$contents like this return $contents

时,来自api的数据结构如下所示

enter image description here

我想访问slots

任何人都可以帮忙吗?谢谢

0 个答案:

没有答案