我的php文件中存在重定向问题

时间:2019-09-23 03:34:25

标签: php curl

我有一个PHP文件生成的视频链接 https://tv3lpc.gq/tv3lpc/staple/ost.php?quality=low&num=0 我可以直接在VLC上运行提取的链接,但是当我将链接放入PHP文件中以进行重定向时,它将无法正常工作。我试图添加用户代理VLC / 2.2.8 LibVLC / 2.2.8,但不起作用。

$url = file_get_contents('https://tv3lpc.gq/tv3lpc/staple/ost.php?quality=low&num=0');
$ch3 = curl_init();
curl_setopt($ch3, CURLOPT_URL, $url);
curl_setopt($ch3, CURLOPT_HEADER, true);
curl_setopt($ch3, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch3, CURLOPT_HTTPHEADER, array(
    'User-Agent: VLC/2.2.8 LibVLC/2.2.8')
);
curl_setopt($ch3, CURLOPT_RETURNTRANSFER, true);
$a = curl_exec($ch3); 
curl_close ($ch3);
header("Location: ". $a);

任何人都可以指导我问题出在哪里并自行测试文件

0 个答案:

没有答案