我创建了一个php代码,通过使用file_get_contents从此页面的标签“hlsUrl”获取第一个m3u8链接,但它不起作用,请帮助
我的代码是
> <?php
>
> $link =
> "https://stream.live/-/streams/users/kawkaw?includeTrending=true" ;
>
> $actualLink = file_get_contents($link);
> echo $actualLink->find("hlsUrl");
>
> ?>
答案 0 :(得分:0)
您的file_get_contents
将返回字符串JSON。所以你需要先解析它。
$link = "https://stream.live/-/streams/users/kawkaw?includeTrending=true";
$actualLink = file_get_contents($link);
$actualJson = json_decode($actualLink);
echo $actualJson->trendingStreams[0]->hlsUrl;