标题: 百度音乐小偷求助?
时间: 2014-03-08
<?php
$url="http://music.baidu.com/song/115087381?infrom=new&uid=14A8F290-E4CA-E0B1-4B9E-052FB2EBBC4B";//假设偷盗地址
$h="User-Agent:UCWEB 8.9.0.253/28/999";//手机UA
$ch = curl_init();
curl_setopt( $ch, CURLOPT_URL, $url);//设置访问的url地址
curl_setopt( $ch, CURLOPT_TIMEOUT, 30);//设置超时
curl_setopt( $ch, CURLOPT_USERAGENT, $h);//模拟手机UA
curl_setopt( $ch, CURLOPT_REFERER,1);//设置 referer
curl_setopt( $ch,CURLOPT_FOLLOWLOCATION,1);//跟踪301
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, 1);//返回结果
$r = curl_exec($ch);
curl_close($ch);
echo $r;
?>
『回复列表(2|隐藏机器人聊天)』