2009-11-06 53 views
5

我正在使用curl讓php向某個網站發送http請求,並將CURLOPT_FOLLOWLOCATION設置爲1,以便它遵循重定向。那麼,我可以找出它最終重定向的位置嗎?找出捲曲被重定向的位置

回答

6

你可以這樣做:

curl_getinfo($ch, CURLINFO_EFFECTIVE_URL); // returns the last effective URL 
+0

不錯。不知道這個。考慮到捲曲選項的數量,它並不總是很容易找到它們。謝謝。 – 2009-11-06 15:21:56

-1

如果您不需要歸身,你可以這樣來做:

CURLOPT_HEADERCURLOPT_NOBODY。標題「位置」應該被返回並且將包含新的URL。然後根據需要用新的URL執行請求。

2
$ch = curl_init("http://websitethatredirects.com"); 
$curlParams = array(
    CURLOPT_FOLLOWLOCATION => true, 
); 
curl_setopt_array($ch, $curlParams); 
$ret = curl_exec($ch); 
$info = curl_getinfo($ch); 
print $info['url']; 

這會告訴你,你最終被重定向到URL。

0

測試這段代碼。它適用於我:

$urls = array(
    'http://www.apple.com/imac', 
    'http://www.google.com/' 
); 

$ch = curl_init(); 

curl_setopt($ch, CURLOPT_HEADER, true); 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 

foreach($urls as $url) { 
    curl_setopt($ch, CURLOPT_URL, $url); 
    $out = curl_exec($ch); 

    // line endings is the wonkiest piece of this whole thing 
    $out = str_replace("\r", "", $out); 

    // only look at the headers 
    $headers_end = strpos($out, "\n\n"); 
    if($headers_end !== false) { 
     $out = substr($out, 0, $headers_end); 
    } 

    $headers = explode("\n", $out); 
    foreach($headers as $header) { 
     if(substr($header, 0, 10) == "Location: ") { 
      $target = substr($header, 10); 

      echo "[$url] redirects to [$target]<br>"; 
      continue 2; 
     } 
    } 

    echo "[$url] does not redirect<br>"; 
}