file_get_contents 但没有负载

file_get_contents but no load

我创建了一个 php 代码,通过使用 file_get_contents 从该页面的标签“hlsUrl”中获取第一个 m3u8 link,但它不起作用,请提供任何帮助

我的密码是

> <?php
> 
> $link =
> "https://stream.live/-/streams/users/kawkaw?includeTrending=true" ;
> 
>    $actualLink = file_get_contents($link);
>      echo $actualLink->find("hlsUrl");
> 
> ?>

您的 file_get_contents 将 return 字符串 JSON。所以你需要先解析它。

$link = "https://stream.live/-/streams/users/kawkaw?includeTrending=true";
$actualLink = file_get_contents($link);
$actualJson = json_decode($actualLink);
echo $actualJson->trendingStreams[0]->hlsUrl;