在脚本标记 html5player.setVideoUrlHigh 中获取内部的 URL

Get the URL inside within script tag html5player.setVideoUrlHigh

提问人:btgen 提问时间:7/6/2022 最后编辑:btgen 更新时间:7/7/2022 访问量:68

问:

我正在尝试在脚本中获取内部标签urlhtml5player.setVideoUrlHigh('http://www.example.com/videourl_here.mp4')

当前使用此脚本但不起作用:

$url = 'http://www.siteurl.com/embedframe38295/';
$content= file_get_contents($url);
  preg_match_all('#html5player.setVideoUrlHigh\(\'.*'/')', $url, $matches, PREG_OFFSET_CAPTURE);
   $videoURL = ($matches[0][0]);
echo $videoURL;

可能是什么问题?

php html5-视频 文件-get-contents

评论

0赞 Mick 7/13/2022
您看到的问题是什么 - 即错误或不正确的输出是什么?

答: 暂无答案