当前位置:首页 > PHP教程 > php函数 > 列表

php的URL重定向header()函数

发布:smiling 来源: PHP粉丝网  添加日期:2014-06-16 00:04:16 浏览: 评论:0 

URL重定向我们会使用到header函数来操作,最简单的就是直接使用header(‘Location: ‘ . $url);就可以了,如果要做像301定向我们还需要发送状态代码,下面整理了一些例子一起来看看吧,代码如下:

  1. // URL重定向 
  2. function redirect($url$time=0, $msg=”) { 
  3. //多行URL地址支持 
  4. $url = str_replace(array(“\n”, “\r”), ”, $url); 
  5. if ( emptyempty($msg) ) 
  6. $msg = “系统将在{$time}秒之后自动跳转到{$url}!”; 
  7. if (!headers_sent()) { 
  8. // redirect 
  9. if (0 === $time) { 
  10. header(‘Location: ‘ . $url); 
  11. else { 
  12. header(“refresh:{$time};url={$url}”); 
  13. echo($msg); 
  14. exit(); 
  15. else { 
  16. $str = “<meta http-equiv=’Refresh’ content=’{$time};URL={$url}’>”; 
  17. if ($time != 0) 
  18. $str .= $msg
  19. exit($str); 
  20. //url重定向2 
  21. function redirect($url) { 
  22. echo “<script>”. 
  23. function redirect() {window.location.replace(‘$url’);}\n”. 
  24. “setTimeout(‘redirect();’, 1000);\n”. 
  25. “</script>”; 
  26. exit(); 

用HTTP头信息

也就是用PHP的HEADER函数。PHP里的HEADER函数的作用就是向浏览器发出由HTTP协议规定的本来应该通过WEB服务器的控制指令,例如声明返回信息的类型("Context-type: xxx/xxx"),页面的属性("No cache", "Expire")等等。

用HTTP头信息进行PHP重定向到另外一个页面的方法,代码如下:

  1. <?php  
  2. $url = "www.phpfensi.com";   
  3. if (!emptyempty($url))     
  4. {     
  5.     Header("HTTP/1.1 303 See Other"); //这条语句可以不写   
  6.     Header("Location: $url");   
  7. }     
  8. ?>    

注意一下,"Localtion:"后面有一个空格,下面整理了一个全面的函数,代码如下:

  1. /** 
  2.  * get_redirect_url() 
  3.  * Gets the address that the provided URL redirects to, 
  4.  * or FALSE if there's no redirect.  
  5.  * 
  6.  * @param string $url 
  7.  * @return string 
  8.  */ 
  9. function get_redirect_url($url){ 
  10.  $redirect_url = null;  
  11.  
  12.  $url_parts = @parse_url($url); 
  13.  if (!$url_partsreturn false; 
  14.  if (!isset($url_parts['host'])) return false; //can't process relative URLs 
  15.  if (!isset($url_parts['path'])) $url_parts['path'] = '/'
  16.  
  17.  $sock = fsockopen($url_parts['host'], (isset($url_parts['port']) ? (int)$url_parts['port'] : 80), $errno$errstr, 30); 
  18.  if (!$sockreturn false; 
  19.  
  20.  $request = "HEAD " . $url_parts['path'] . (isset($url_parts['query']) ? '?'.$url_parts['query'] : '') . " HTTP/1.1rn";  
  21.  $request .= 'Host: ' . $url_parts['host'] . "rn";  
  22.  $request .= "Connection: Closernrn";  
  23.  fwrite($sock$request); 
  24.  $response = ''
  25.  while(!feof($sock)) $response .= fread($sock, 8192); 
  26.  fclose($sock); 
  27.  
  28.  if (preg_match('/^Location: (.+?)$/m'$response$matches)){ 
  29.   return trim($matches[1]); 
  30.  } else { 
  31.   return false; 
  32.  } 
  33.  
  34.  
  35. /** 
  36.  * get_all_redirects() 
  37.  * Follows and collects all redirects, in order, for the given URL.  
  38.  * 
  39.  * @param string $url 
  40.  * @return array 
  41.  */ 
  42. function get_all_redirects($url){ 
  43.  $redirects = array(); 
  44.  while ($newurl = get_redirect_url($url)){ 
  45.   if (in_array($newurl$redirects)){ 
  46.    break
  47.   } 
  48.   $redirects[] = $newurl
  49.   $url = $newurl
  50.  } 
  51.  return $redirects
  52.  
  53. /** 
  54.  * get_final_url() 
  55.  * Gets the address that the URL ultimately leads to.  
  56.  * Returns $url itself if it isn't a redirect. 
  57.  * 
  58.  * @param string $url 
  59.  * @return string 
  60.  */ 
  61. function get_final_url($url){ 
  62.  $redirects = get_all_redirects($url); 
  63.  if (count($redirects)>0){ 
  64.   return array_pop($redirects); 
  65.  } else { 
  66.   return $url
  67.  } 

Tags: URL重定向 header()函数

分享到: