提问人:btgen 提问时间:7/6/2022 最后编辑:btgen 更新时间:7/7/2022 访问量:68
在脚本标记 html5player.setVideoUrlHigh 中获取内部的 URL
Get the URL inside within script tag html5player.setVideoUrlHigh
问:
我正在尝试在脚本中获取内部标签url
html5player.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;
可能是什么问题?
答: 暂无答案
评论