在php获取http头部信息上,php有个自带的函数get_headers(),我以前也是用这个的,传闻效率在win上不咋地,再加上最近研究百度url无果,写了cURL获取重定向url的php代码来折腾。
以前我是用get_headers来获取跳转后的url
get_headers的代码
//curl的百度百科 $url = 'http://www.baidu.com/link?url=77I2GJqjJ4zBBpC8yDF8xDhiqDSn1JZjFWsHhEoSNd85PkV8Xil-rckpQ8_kjGKNNq'; $header = get_headers($url,1); if (strpos($header[0],'301') || strpos($header[0],'302')) { if(is_array($header['Location'])) { $info = $header['Location'][count($header['Location'])-1]; }else{ $info = $header['Location']; } } echo $info;此刻用cURL来重写一遍代码
CURL是需要配置curl_setopt 和curl_getinfo才可以获取 Location:重定向
因为还和网速有关,两段代码的效率我还没测试 。