|
|
发表于 2025-12-25 22:15:40
|
显示全部楼层
<?php
$id = $_GET['id'];
//http://kaniptv.com
//湛江综合,id=13
//湛江公共,id=14
if (preg_match('/<source src="(https:\/\/gbtv-hls\.zjwtv\.com[^"]+)" type="application\/x-mpegURL">/', file_get_contents("http://www.zjwtv.com/fccommon/Home/detail?site_id=75&detail_type=7&cid={$id}"), $matches)) {
header("Location: " . str_replace('&', '&', $matches[1]));
exit();
}
?> |
|