file_get_contents但没有加载

时间:2017-04-21 12:42:38

标签: php file-get-contents

我创建了一个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");
> 
> ?>

1 个答案:

答案 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;