|
发表于 2025-9-1 18:46:24
|
显示全部楼层
<?php
$id = $_GET['id'];
$u = 'http://share.nddst.com?_hgOutLink=live/livedetail&channel_id='.$id;
$html = file_get_contents($u);
$doc = new DOMDocument;
@$doc->loadHTML($html);
$p = $doc->getElementById('m3u8')->getAttribute('value');
header('Access-Control-Allow-Origin: *');
header('Location: '.$p); |
|