当前位置:首页 > PHP教程 > php应用 > 列表

PHP 获取短网址跳转后的真实地址的实例

发布:smiling 来源: PHP粉丝网  添加日期:2014-09-22 21:18:49 浏览: 评论:0 

你可能所有不知道获取短网址跳转后的真实地址我们可以使用get_headers()函数来实现,下面我一起来看我总结的一些例子.

获取到一个短连接,需要将短连接转换成真实的网址,通过查资料,发现 PHP 提供了一个函数 get_headers(),可以完成这个任务,先把 头部信息获取到,然后再分析跳转地址即可.

利用get_headers() 函数获取http头,php 自带的get_headers()取得服务器响应一个 HTTP 请求所发送的所有标头, 获取301状态肯定没问题.

例子,代码如下:

  1. $url = 'http://t.cn/h5mwx'
  2. $headers = get_headers($url, TRUE); 
  3. print_r($headers); 
  4. //输出跳转到的网址 
  5. echo $headers['Location']; 
  6. //附: 
  7. Array 
  8.     [0] => HTTP/1.1 302 Moved Temporarily 
  9.     [Location] => http://www.phpfensi.com 
  10.     [Content-Type] => Array 
  11.         ( 
  12.             [0] => text/html;charset=UTF-8 
  13.             [1] => text/html;charset=utf-8 
  14.         ) 
  15.     [Server] => Array 
  16.         ( 
  17.             [0] => weibo 
  18.             [1] => BWS/1.0 
  19.         ) 
  20.     [Content-Length] => Array 
  21.         ( 
  22.             [0] => 203 
  23.             [1] => 16424 
  24.         ) 
  25.     [Date] => Array 
  26.         ( 
  27.             [0] => Thu, 12 Dec 2013 10:42:25 GMT 
  28.             [1] => Thu, 12 Dec 2013 10:42:25 GMT 
  29.         ) 
  30.     [X-Varnish] => 2893360335 
  31.     [Age] => 0 
  32.     [Via] => 1.1 varnish 
  33.     [Connection] => Array 
  34.         ( 
  35.             [0] => close 
  36.             [1] => Close 
  37.         ) 

好了我们看一个获取短网址跳转之前的网址,代码如下:

  1. $header = get_headers($url, 1);  
  2. if (strpos($header[0], '301') || strpos($header[0], '302')) {  
  3. if (is_array($header['Location'])) {  
  4. return $header['Location'][count($header['Location'])-1];  
  5. else {  
  6. return $header['Location'];  
  7. }  
  8. else {  
  9. return $url;  
  10. }

Tags: PHP获取短网址 PHP跳转真实地址

分享到: