网站的跳转链接经常为本站链接加上一些参数来跳转,如何使用php获取跳转后的链接呢?

php代码如下:

 

<?php

//

echo get_redirect_url('http://www.oschina.net/action/project/go?id=1089&p=home');

//输出结果为:http://code.google.com/android/

function get_redirect_url($url){

    $redirect_url = null;

 

    $url_parts = @parse_url($url);

    if (!$url_parts) return false;

    if (!isset($url_parts['host'])) return false; //can't process relative URLs

    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)){

        if ( substr($matches[1], 0, 1) == "/" )

            return $url_parts['scheme'] . "://" . $url_parts['host'] . trim($matches[1]);

        else

            return trim($matches[1]);

 

    } else {

        return false;

    }

 

}

posted on 2013-11-15 14:02  飞奔的猪  阅读(512)  评论(0编辑  收藏  举报