欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2022-04-16 22:08:25
...
function url_this(){ 
        $url = "http://".$_server ["http_host"].$_server["request_uri"]; 
        $return_url = "<a href="http://www.php.cn/">; 
        return $return_url; 
    } 
 
//跳转函数 
function url_redirect($url,$delay=''){ 
 if($delay == ''){ 
  echo "<script>window.location.href="http://www.php.cn/">; 
 }else{//开源代码phpfensi.com 
  echo "<meta http-equiv='refresh' content='$delay;url=$url' />"; 
 } 
 
} 
 
} //end func
相关标签: php