PHP可以跟踪URL吗?

时间:2009-10-17 05:01:23

标签: php url redirect

PHP是否可以获取URL,等待重定向通过,然后获取它所在页面的URL?

3 个答案:

答案 0 :(得分:10)

    $cr = curl_init("http://example.com"); 
    curl_setopt($cr, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($cr, CURLOPT_FOLLOWLOCATION, 1);     
    curl_exec($cr); 
    $info = curl_getinfo($cr);
    echo "url=".$info["url"];

答案 1 :(得分:0)

答案 2 :(得分:0)

您也可以使用wget / curl包装器。

http://php.net/manual/en/book.curl.php