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

php获得当前的脚本网址

程序员文章站 2022-05-14 17:46:31
//获得当前的脚本网址 function getcururl(){     if(!empty($_server[...

//获得当前的脚本网址
function getcururl(){
    if(!empty($_server["request_uri"])){
        $scriptname = $_server["request_uri"];
        $nowurl = $scriptname;
    }else{
        $scriptname = $_server["php_self"];
        if(empty($_server["query_string"])) $nowurl = $scriptname;
        else $nowurl = $scriptname."?".$_server["query_string"];
    }
    return $nowurl;
}