我使用 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;
我使用 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;
根据您链接的文档,您的预期结果似乎是一个 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