代码非常简单,看到山上有人在问,简单写了一个,供大家研究(仅回看代码,无源!)
<?php
$id = $_GET['id'] ?? 'emdy4k_8000';
$playseek = $_GET['playseek'] ?? '';
$url = "http://live2.rxip.sc96655.com/live/{$id}.m3u8?E=&U=&A=&K=&P=&S=";
if ($playseek) {
$f = 'YmdHis';
$a = explode('-', $playseek);
$z = new DateTimeZone('Asia/Shanghai');
$s = DateTime::createFromFormat($f, $a[0], $z)->getTimestamp();
$e = DateTime::createFromFormat($f, $a[1], $z)->getTimestamp();
$url .= "&shifttime=$s&shiftend=$e";
}
header("Location: $url");
exit;
- 使用方法:
- sxghk.php?/PLTV/&id=CCTV-1H265_4000
复制代码 |