php獲取跳轉(zhuǎn)url的方法:1、使用get_headers函數(shù)獲取跳轉(zhuǎn)后的url,該函數(shù)可以獲取服務(wù)器響應(yīng)一個HTTP請求所發(fā)送的所有標(biāo)頭;2、使用fsockopen()函數(shù);3、使用使用cURL函數(shù)。
成都創(chuàng)新互聯(lián)長期為上千家客戶提供的網(wǎng)站建設(shè)服務(wù),團(tuán)隊從業(yè)經(jīng)驗10年,關(guān)注不同地域、不同群體,并針對不同對象提供差異化的產(chǎn)品和服務(wù);打造開放共贏平臺,與合作伙伴共同營造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為西盟企業(yè)提供專業(yè)的網(wǎng)站建設(shè)、成都做網(wǎng)站,西盟網(wǎng)站改版等技術(shù)服務(wù)。擁有10余年豐富建站經(jīng)驗和眾多成功案例,為您定制開發(fā)。
推薦:《PHP視頻教程》
有時候我們會在開發(fā)中,經(jīng)常會遇到有URL 301或 302重定向的情況,這時候我們可能需要獲取重定向之后的url,下面我們介紹一下幾種獲取重定向url的方法:
1、用get_headers函數(shù)
php自帶的get_headers函數(shù)可以獲取服務(wù)器響應(yīng)一個HTTP請求所發(fā)送的所有標(biāo)頭,我們可以嘗試用該函數(shù)實現(xiàn)。
function get_redirect_url($url){ $header = get_headers($url, 1); if (strpos($header[0], ’301′) !== false || strpos($header[0], ’302′) !== false) { if(is_array($header['Location'])) { return $header['Location'][count($header['Location'])-1]; }else{ return $header['Location']; } }else { return $url; } }
2、使用fsockopen()內(nèi)置函數(shù)
function get_redirect_url($url){ $redirect_url = false; $url_parts = @parse_url($url); if (!$url_parts) return false; if (!isset($url_parts['host'])) return false; if (!isset($url_parts['path'])) $url_parts['path'] = ‘/’; $sock = fsockopen($url_parts['host'], (isset($url_parts['port']) ? (int)$url_parts['port'] : 80), $errno, $errstr, 30); if (!$sock) return false; $request = “HEAD ” . $url_parts['path'] . (isset($url_parts['query']) ? ‘?’.$url_parts['query'] : ”) . ” HTTP/1.1\\r\\n”; $request .= ‘Host: ‘ . $url_parts['host'] . “\\r\\n”; $request .= “Connection: Close\\r\\n\\r\\n”; fwrite($sock, $request); $response = ”; while(!feof($sock)) $response .= fread($sock, 8192); fclose($sock); if (preg_match(‘/^Location: (.+?)$/m’, $response, $matches)){ return trim($matches[1]); } else { return false; } }
3、使用cURL函數(shù)
function get_redirect_url($url, $referer=”, $timeout = 10) { $redirect_url = false; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_HEADER, TRUE); curl_setopt($ch, CURLOPT_NOBODY, TRUE);//不返回請求體內(nèi)容 curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);//允許請求的鏈接跳轉(zhuǎn) curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE); curl_setopt($ch, CURLOPT_TIMEOUT, $timeout); curl_setopt($ch, CURLOPT_HTTPHEADER, array( ‘Accept: */*’, ‘User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)’, ‘Connection: Keep-Alive’)); if ($referer) { curl_setopt($ch, CURLOPT_REFERER, $referer);//設(shè)置referer } $content = curl_exec($ch); if(!curl_errno($ch)) { $redirect_url = curl_getinfo($ch, CURLINFO_EFFECTIVE_URL);//獲取最終請求的url地址 } return $redirect_url; }
哪個方法的效果更高一些,可以自行測試一下。
更多編程相關(guān)知識,請訪問:編程入門?。?
新聞名稱:php怎么獲取跳轉(zhuǎn)后的url?
網(wǎng)站網(wǎng)址:http://muchs.cn/article46/cgphhg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供全網(wǎng)營銷推廣、手機(jī)網(wǎng)站建設(shè)、移動網(wǎng)站建設(shè)、網(wǎng)站內(nèi)鏈、商城網(wǎng)站、App設(shè)計
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)