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

php 跳转函数,与获取当前页面的URL地址

发布:smiling 来源: PHP粉丝网  添加日期:2014-08-25 09:08:11 浏览: 评论:0 
  1. function url_this(){ 
  2.         $url = "http://".$_server ["http_host"].$_server["request_uri"]; 
  3.         $return_url = "<a href='$url'>$url</a>"
  4.         return $return_url
  5.     } 
  6.  
  7. //跳转函数 
  8. function url_redirect($url,$delay=''){ 
  9.  if($delay == ''){ 
  10.   echo "<script>window.location.href='$url'</script>"
  11.  }else{//开源代码phpfensi.com 
  12.   echo "<meta http-equiv='refresh' content='$delay;url=$url' />"
  13.  } 
  14.  
  15.  
  16. //end func 

Tags: php跳转函数 当前页URL地址

分享到: