[Code]php
<?php /* 雪自純陽落白衫:https://www.cnblogs.com/L1079991001/ */ if (!empty($_GET['url'])) { $url = $_GET['url']; $str = GET($url, 1); preg_match("/video_id=(.*?)&/i", $str, $arr); if (count($arr) >= 1) { $str = GET("https://aweme.snssdk.com/aweme/v1/play/?video_id=".$arr[1]."&line=0", 0); preg_match('#<a href="(.*?)">#', $str, $arr2); if (count($arr2) >= 1) { $arr3 = explode("//", $arr2[1]); if (!empty($arr3)) { //header("content-type:video/mp4"); //header("Location: "."https://".$arr3[1]); if (!empty($_GET['way']) && $_GET['way'] == "txt") { exit("https://".$arr3[1]); } elseif(!empty($_GET['way']) && $_GET['way'] == "json") { $aray = ['code' =>200, 'msg' =>'success', 'url' =>"https://".$arr3[1]]; exit(json_encode($aray, false)); } else { //跳轉到改地址播放 header("Location: "."https://".$arr3[1]); } } } } } else { echo "lhr0321"; } function Get($url, $foll = 0) { //初始化 $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); //訪問的url curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); //徹底靜默 curl_setopt($ch, CURLOPT_HEADER, false); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); //忽略https curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); //忽略https curl_setopt($ch, CURLOPT_HTTPHEADER, ["user-agent: Mozilla/5.0 (iPhone; CPU iPhone OS 6_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A5376e Safari/8536.25"]); //UA curl_setopt($ch, CURLOPT_FOLLOWLOCATION, $foll); //默認爲$foll=0,大概意思就是對照模塊網頁訪問的禁止301 302 跳轉。 $output = curl_exec($ch); //獲取內容 curl_close($ch); //關閉 return $output; //返回 } /* 雪自純陽落白衫:https://www.cnblogs.com/L1079991001/ */ ?>