TMDB PHP 结果数组
TMDB PHP result array
我使用 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-object,你必须 "cast" 它到 PHP-object:
$newObject = json_decode($response);
您可以像这样访问 PHP 中的对象属性:
echo $newObject->id;
echo $newObject->name;
等..
请在此处查看有关此主题的 PHP 文档:PHP - json-decode
我使用 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-object,你必须 "cast" 它到 PHP-object:
$newObject = json_decode($response);
您可以像这样访问 PHP 中的对象属性:
echo $newObject->id;
echo $newObject->name;
等.. 请在此处查看有关此主题的 PHP 文档:PHP - json-decode