tvbox804/tv/epg.php
qcfree 14edb5e101
1
Signed-off-by: qcfree <6529067+qcfree@user.noreply.gitee.com>
2023-08-06 13:01:00 +00:00

15 lines
584 B
PHP

<?php
error_reporting(E_ERROR | E_PARSE);
header("content-type:application/json; charset=utf-8");
$ch=$_GET['ch'];
$date=$_GET['date'];
$api='https://epg.112114.xyz/';
$epg=file_get_contents($api.'?ch='.$ch.'&date='.$date);
if(!empty($epg)){
echo $epg;
}else{//否则输出默认
$epg= array("channel_name" => $ch,"date" => date('Y-m-d'));
$epg['epg_data'][] = array("start" => "00:00","end" => "23:59","title" => '暂无播放信息',"desc" => '竹子哥专属EPG');
exit(json_encode($epg,JSON_UNESCAPED_UNICODE|JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES));
};
?>