我使用PHP中的代码获取有关季节的信息。我怎样才能得到结果数组? 谢谢。
curl_setopt_array($curl, array(
CURLOPT_URL => "https://api.themoviedb.org/3/tv/xxx/season/xxx?language=en-US&api_key=xxx",
$response = curl_exec($curl);
echo $response;
答案 0 :(得分:0)
根据您链接的文档,您的预期结果似乎是JSON对象-因此echo
不起作用。
使用var_dump(json_decode($response));
查看结果。
如果要在PHP中使用JSON对象,则必须将其“投射”到PHP对象:
$newObject = json_decode($response);
然后您可以像这样访问PHP中的对象属性:
echo $newObject->id;
echo $newObject->name;
等。 请参阅以下主题中的PHP文档:PHP - json-decode