擷取到一個短串連,需要將短串連轉換成真實的網址,通過查資料,發現 PHP 提供了一個函數 get_headers() ,可以完成這個任務,先把 頭部資訊擷取到,然後再分析跳轉地址即可
利用get_headers() 函數擷取http頭
php 內建的get_headers()取得伺服器響應一個 HTTP 要求所發送的所有標題。 擷取301狀態肯定沒問題。
例子
代碼如下 |
複製代碼 |
$url = 'http://t.cn/h5mwx'; $headers = get_headers($url, TRUE); print_r($headers); //輸出跳轉到的網址 echo $headers['Location']; 附: Array ( [0] => HTTP/1.1 302 Moved Temporarily [Location] => http://www.111Cn.net [Content-Type] => Array ( [0] => text/html;charset=UTF-8 [1] => text/html;charset=utf-8 ) [Server] => Array ( [0] => weibo [1] => BWS/1.0 ) [Content-Length] => Array ( [0] => 203 [1] => 16424 ) [Date] => Array ( [0] => Thu, 12 Dec 2013 10:42:25 GMT [1] => Thu, 12 Dec 2013 10:42:25 GMT ) [X-Varnish] => 2893360335 [Age] => 0 [Via] => 1.1 varnish [Connection] => Array ( [0] => close [1] => Close ) ) |
好了我們看一個擷取短網址跳轉之前的網址
代碼如下 |
複製代碼 |
$header = get_headers($url, 1); if (strpos($header[0], '301') || strpos($header[0], '302')) { if (is_array($header['Location'])) { return $header['Location'][count($header['Location'])-1]; } else { return $header['Location']; } } else { return $url; } |