|
|
发表于 2025-12-25 22:16:54
|
显示全部楼层
<?php
$id = $_GET['id'];
//http://kaniptv.com
//揭阳综合,id=11
//揭阳生活,id=12
if (preg_match('/<source src="(https:\/\/hls-stjy\.jyrtv\.tv[^"]+)" type="application\/x-mpegURL">/', file_get_contents("https://www.jyrtv.tv/fccommon/Home/detail?site_id=75&detail_type=7&cid={$id}"), $matches)) {
header("Location: " . str_replace('&', '&', $matches[1]));
exit();
}
?> |
|