1

サーバーのリダイレクト URL を取得しようとしています。私が試してみました

    function http_head_curl($url,$timeout=10)
{
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_TIMEOUT, $timeout); // in seconds
    curl_setopt($ch, CURLOPT_HEADER, 1);
    curl_setopt($ch, CURLOPT_NOBODY, 1);
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    $res = curl_exec($ch);
    if ($res === false) {
        throw new RuntimeException("cURL exception: ".curl_errno($ch).": ".curl_error($ch));
    }
    return trim($res);
}


echo http_head_curl("http://www.site.com",$timeout=10);

結果は次のとおりです。

HTTP/1.1 301 Moved Permanently Date: Sun, 12 May 2013 23:34:22 GMT Server: LiteSpeed Connection: close X-Powered-By: PHP/5.3.23 Set-Cookie: PHPSESSID=0d4b28dd02bd3d8413c92f71253e8b31; パス=/; HttpOnly X-Pingback: http://site.com/xmlrpc.phpコンテンツ タイプ: text/html; charset=UTF-8 場所: http://site.com/ HTTP/1.1 200 OK 日付: 2013 年 5 月 12 日 (日) 23:34:23 GMT サーバー: LiteSpeed 接続: 閉じる X-Powered-By: PHP/5.3.23セット Cookie: PHPSESSID=630ed27f107c07d25ee6dbfcb02e8dec; パス=/; HttpOnly X-Pingback: http://site.com/xmlrpc.phpコンテンツ タイプ: text/html; 文字セット=UTF-8

ほとんどすべてのヘッダー情報が表示されますが、リダイレクト先は表示されません。リダイレクトされたページの URL を取得するにはどうすればよいですか?

4

3 に答える 3

1

Locationヘッダーです。

$headers = array();
$lines = explode("\n", http_head_curl('http://www.site.com', $timeout = 10));

list($protocol, $statusCode, $statusMsg) = explode(' ', array_shift($lines), 3);

foreach($lines as $line){
  $line = explode(':', $line, 2);
  $headers[trim($line[0])] = isset($line[1]) ? trim($line[1]) : '';
}

// 3xx = redirect    
if(floor($statusCode / 100) === 3)
  print $headers['Location'];
于 2013-05-12T23:59:53.857 に答える
1
$response = curl_exec($ch);
$info = curl_getinfo($ch);
$response_header = substr($response, 0, $info['header_size']);
$response_header = parseHeaders($response_header, 'Status');
$content = substr(response, $info['header_size']);
$url_redirect = (isset($response_header['Location'])) ? $response_header['Location'] : null;
var_dump($url_redirect);

/*
* or you can use http://php.net/http-parse-headers, 
* but then need to install http://php.net/manual/en/book.http.php
*/
function parseHeaders($headers, $request_line)
{
    $results = array();
    $lines = array_filter(explode("\r\n", $headers));
    foreach ($lines as $line) {
        $name_value = explode(':', $line, 2);
        if (isset($name_value[1])) {
            $name = $name_value[0];
            $value = $name_value[1];
        } else {
            $name = $request_line;
            $value = $name_value[0];
        }
        $results[$name] = trim($value);
    }
    return $results;
}
于 2013-05-13T00:00:35.237 に答える