本帖最后由 kudogxy 于 2026-3-18 17:49 编辑
<?php
$channels = [
'news' => ['name' => '合肥新闻', 'm3u8' => 'http://112.27.235.94:8000/hls/18/index.m3u8'],
'life' => ['name' => '合肥生活', 'm3u8' => 'http://112.27.235.94:8000/hls/19/index.m3u8'],
'tech' => ['name' => '合肥科创', 'm3u8' => 'http://112.27.235.94:8000/hls/20/index.m3u8'],
'edu' => ['name' => '教育法治', 'm3u8' => 'http://112.27.235.94:8000/hls/21/index.m3u8'],
'1' => 'life', '2' => 'news', '3' => 'tech', '4' => 'edu'
];
$channel = $_GET['id'] ?? $_GET['channel'] ?? '';
if (isset($channels[$channel])) {
if (is_string($channels[$channel])) $channel = $channels[$channel];
if (is_array($channels[$channel])) {
header("Location: {$channels[$channel]['m3u8']}", true, 302);
header("Content-Type: application/vnd.apple.mpegurl");
exit;
}
}
|