PHP获取URL跳转后的链接
$url=
http://s.click.taobao.com/t?e=m%3D2%26s%3DNUvtFDcIwOocQipKwQzePOeEDrYVVa64LKpWJ%2Bin0XJRAdhuF14FMR8WZHEPpGYi8sviUM61dt3fihkA92r7Zcnjyd38oaEmgUaFy6v5pIPjBFxotqUef4wnVsVnnsB8
跳转到
$result=
http://item.taobao.com/item.htm?id=23547888655&ali_trackid=2:mm_41992893_0_0:1385292898_6k3_1991321817
$url 是从阿里妈妈获取的推广链接,他的页面内容是JS的,他通过JS跳转到了 $result ,我想通过$url获取$result,用php能封装这个功能吗?
------解决方案--------------------
那试试这个吧 http://blog.segmentfault.com/pcp/1190000000341558
------解决方案--------------------php curl
设置 curl_setopt($ch, CURLOPT_HEADER, true);
返回信息里正则获取Location:部分
preg_match('/^Location: (?P<location>.*?)$/m', $hmtl,$match)
Location:后面的地址就是跳转后的地址。