当前位置:Gxlcms > PHP教程 > php跳转函数,与获取当前页面的URL地址

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

时间:2021-07-01 10:21:17 帮助过:18人阅读

function url_this(){ 
        $url = "http://".$_server ["http_host"].$_server["request_uri"]; 
        $return_url = "<a href="http://www.gxlcms.com/">; 
        return $return_url; 
    } 
 
//跳转函数 
function url_redirect($url,$delay=''){ 
 if($delay == ''){ 
  echo "<script>window.location.href="http://www.gxlcms.com/">; 
 }else{//开源代码phpfensi.com 
  echo "<meta http-equiv='refresh' content='$delay;url=$url' />"; 
 } 
 
} 
 
} //end func

人气教程排行