我很难从这里的 API 获取一些 json 数据。基本上我想获取文件内容,然后将“meta_game”分配给一个变量,我还希望将“channel_count”分配给一个变量。正如您在此处看到的,我为这两个实例尝试了 2 种不同的方法,但目前都不起作用。
$json = file_get_contents($chan);
$json_data = unserialize($json);
$gameName = json_decode($json)->meta_game;
$viewerCount = $json_data['channel_count'];
下面是一个 URL 示例,它将从以下位置获取:http ://api.justin.tv/api/stream/list.json? channel= + 频道名称。