verystream是一个在线观看视频的网盘,目前被富强。
里面有很多司机在开车
老司机带大家来一波视频解析
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
include('simple_html_dom.php'); function get_verystream($url) { $webdata=get_html($url); $xpath='[id=videolink]'; $html_dom=str_get_html($webdata); if($html_dom->find($xpath)) { $link="https://verystream.com/gettoken/".$html_dom->find($xpath)[0]->plaintext; } $html_dom->clear(); } function get_html($myurl) { // 初始化一个 cURL 对象 $curl = curl_init(); // 设置你需要抓取的URL curl_setopt($curl, CURLOPT_URL, $myurl); curl_setopt($curl, CURLOPT_USERAGENT, 'Opera/9.27 (Windows NT 5.2; U; zh-cn)'); curl_setopt($curl,CURLOPT_REFERER,$myurl);//伪装来源 curl_setopt($curl, CURLOPT_HEADER,0); // 设置cURL 参数,要求结果保存到字符串中还是输出到屏幕上。 curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);//https访问 curl_setopt($curl, CURLOPT_TIMEOUT,60);//请求超时60s curl_setopt($curl, CURLOPT_FOLLOWLOCATION,1);//301跳转 $data = curl_exec($curl); //转换编码 $html=mb_convert_encoding($data, 'UTF-8', 'UTF-8,GBK,GB2312,BIG5'); // 关闭URL请求 curl_close($curl); return $html; } |
“simple_html_dom.php”前面文章介绍过Simple_Html_Dom选择器全部使用方法
详细使用:官方文档和下载
近期评论