<?php
$id = $_GET['id'];
$url = 'http://154.219.118.201/jr.php?id='.$id;
$ua='AppleCoreMedia/1.0.0.9A405 (iPad; U; CPU OS 5_0_1 like Mac OS X; zh_cn)';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_USERAGENT, $ua);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);//成功结果返回,不自动输出
curl_exec($ch); //执行
$info = curl_getinfo($ch);
$playurl = $info['redirect_url'];
curl_close($ch);
if ($playurl == true) {
 header('location:'.$playurl);
} else {
 echo "获取失败";
}
?>