<?php
$channel = ['fh'=>'1016529', 'xw'=>'1016561'];
$id = $channel[$_GET['id']] ?? $channel['fh'];
$ch = curl_init('https://flive.ifeng.com/live/'.$id.'.html');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_TIMEOUT => 15,
CURLOPT_SSL_VERIFYPEER => false,
CURLOPT_ENCODING => '',
CURLOPT_HTTPHEADER => [
'User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',
'Referer: https://www.ifeng.com/'
]
]);
$html = curl_exec($ch);
curl_close($ch);
preg_match('/https?:\/\/[^"\'\s<>]+\.m3u8[^"\'\s<>]*/i', $html, $m);
header($m ? 'Location: '.$m[0] : 'HTTP/1.1 404 Not Found');
/*
调用方式:
xxx.php?id=fh
xxx.php?id=xw
*/
|