|
|
发表于 2025-12-25 22:44:16
|
显示全部楼层
<?php
/*
长春综合,http://xxx/xxx.php?id=36
长春文旅体育,http://xxx/xxx.php?id=37
长春市民生活,http://xxx/xxx.php?id=38
//广播
长春新闻广播,http://xxx/xxx.php?id=449
长春交通广播,http://xxx/xxx.php?id=468
长春fm880,http://xxx/xxx.php?id=521
长春fm900,http://xxx/xxx.php?id=478
长春fm996,http://xxx/xxx.php?id=510
长春fm1063,http://xxx/xxx.php?id=416
*/
$id = $_GET['id'] ?? 36;
$response = file_get_contents("https://ccms.njgdmm.com/changchun/api/api-bc/share/liveTvById?resourceId=$id");
$data = json_decode($response, true);
if ($data['error'] == 200 && !empty($data['data']['url'])) {
header('Location: ' . $data['data']['url']);
exit;
}
?> |
|