如何使用PHP获取基本URL?


139

我在Windows Vista上使用XAMPP。在我的发展中,我有http://127.0.0.1/test_website/

如何http://127.0.0.1/test_website/使用PHP?

我尝试了类似的方法,但是没有一个起作用。

echo dirname(__FILE__)
or
echo basename(__FILE__);
etc.

1
他们怎么不工作?他们还回来了什么?
animuson

6
@animuson这些常量返回本地文件系统路径,而不是URL。
ceejayoz

Answers:


251

试试这个:

<?php echo "http://" . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI']; ?>

了解有关$_SERVER预定义变量的更多信息。

如果计划使用https,则可以使用以下命令:

function url(){
  return sprintf(
    "%s://%s%s",
    isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off' ? 'https' : 'http',
    $_SERVER['SERVER_NAME'],
    $_SERVER['REQUEST_URI']
  );
}

echo url();
#=> http://127.0.0.1/foo

根据此答案,请确保正确配置Apache,以便您可以放心使用SERVER_NAME

<VirtualHost *>
    ServerName example.com
    UseCanonicalName on
</VirtualHost>

注意:如果您依赖于HTTP_HOST键(包含用户输入),则仍必须进行一些清理,删除空格,逗号,回车符等。对于域不是有效字符的任何内容。查看PHP内置的parse_url函数以获取示例。


2
应该签入$_SERVER['HTTPS']并更换,https://而不是http://在那种情况下。
ceejayoz

2
多亏了您,我需要此功能。
Brice Favre 2010年

2
$ _SERVER ['REQUEST_SCHEME']怎么样?难道不是那么简单吗?
frostymarvelous

2
如果您使用的端口不是80,这将不起作用。:(
M'sieur Toph'2015年

1
@admdrew谢谢。我仔细检查了是否REQUEST_URI已经包含/;是的。@swarnendu在编辑其他人的答案时请多加注意。那应该是一条评论。
maček

28

调整功能以在没有警告的情况下执行:

function url(){
    if(isset($_SERVER['HTTPS'])){
        $protocol = ($_SERVER['HTTPS'] && $_SERVER['HTTPS'] != "off") ? "https" : "http";
    }
    else{
        $protocol = 'http';
    }
    return $protocol . "://" . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
}

1
我知道我曾经做过此事,只是因为某种原因不记得该怎么做。谢谢!
凯尔·库克斯

我需要将首页网址设置为标题图片。当用户不在主页上的其他页面上时,应通过单击标题图像将他/她重定向到主页。我怎样才能做到这一点?
乔伊(Joey)

21

有趣的“ base_url”代码段!

if (!function_exists('base_url')) {
    function base_url($atRoot=FALSE, $atCore=FALSE, $parse=FALSE){
        if (isset($_SERVER['HTTP_HOST'])) {
            $http = isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) !== 'off' ? 'https' : 'http';
            $hostname = $_SERVER['HTTP_HOST'];
            $dir =  str_replace(basename($_SERVER['SCRIPT_NAME']), '', $_SERVER['SCRIPT_NAME']);

            $core = preg_split('@/@', str_replace($_SERVER['DOCUMENT_ROOT'], '', realpath(dirname(__FILE__))), NULL, PREG_SPLIT_NO_EMPTY);
            $core = $core[0];

            $tmplt = $atRoot ? ($atCore ? "%s://%s/%s/" : "%s://%s/") : ($atCore ? "%s://%s/%s/" : "%s://%s%s");
            $end = $atRoot ? ($atCore ? $core : $hostname) : ($atCore ? $core : $dir);
            $base_url = sprintf( $tmplt, $http, $hostname, $end );
        }
        else $base_url = 'http://localhost/';

        if ($parse) {
            $base_url = parse_url($base_url);
            if (isset($base_url['path'])) if ($base_url['path'] == '/') $base_url['path'] = '';
        }

        return $base_url;
    }
}

使用方法如下:

//  url like: http://stackoverflow.com/questions/2820723/how-to-get-base-url-with-php

echo base_url();    //  will produce something like: http://stackoverflow.com/questions/2820723/
echo base_url(TRUE);    //  will produce something like: http://stackoverflow.com/
echo base_url(TRUE, TRUE); || echo base_url(NULL, TRUE);    //  will produce something like: http://stackoverflow.com/questions/
//  and finally
echo base_url(NULL, NULL, TRUE);
//  will produce something like: 
//      array(3) {
//          ["scheme"]=>
//          string(4) "http"
//          ["host"]=>
//          string(12) "stackoverflow.com"
//          ["path"]=>
//          string(35) "/questions/2820723/"
//      }

15
   $base_url="http://".$_SERVER['SERVER_NAME'].dirname($_SERVER["REQUEST_URI"].'?').'/';

用法:

print "<script src='{$base_url}js/jquery.min.js'/>";

13
$modifyUrl = parse_url($url);
print_r($modifyUrl)

使用
Output 只是简单而已:

Array
(
    [scheme] => http
    [host] => aaa.bbb.com
    [path] => /
)

1
这不是获取基本URL的最佳方法。
Anjani Barnwal

@AnjaniBarnwal您能解释为什么吗?我认为这是最好的方式,如果你有一个URL字符串,并希望得到基本URL像https://example.comhttps://example.com/category2/page2.html?q=2#lorem-ipsum-这无关与当前页你在。
OZZIE

7

我认为$_SERVER超全局性具有您正在寻找的信息。可能是这样的:

echo $_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI']

您可以在此处查看相关的PHP文档。


这会一直重定向到当前的同一页面用户。如何解决此问题以重定向到首页?我在Apache,本地主机上。php7
Joey

5

试试下面的代码:

$config['base_url'] = ((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == "on") ? "https" : "http");
$config['base_url'] .= "://".$_SERVER['HTTP_HOST'];
$config['base_url'] .= str_replace(basename($_SERVER['SCRIPT_NAME']),"",$_SERVER['SCRIPT_NAME']);
echo $config['base_url'];

4

以下代码将减少检查协议的问题。$ _SERVER ['APP_URL']将显示带有协议的域名

$ _SERVER ['APP_URL']将返回协议://域(例如:-http:// localhost

$ _SERVER ['REQUEST_URI']用于url的其余部分,例如/ directory / subdirectory / something / else

 $url = $_SERVER['APP_URL'].$_SERVER['REQUEST_URI'];

输出将是这样的

http:// localhost / directory / subdirectory / something / else


1
不仅要粘贴一堆随机代码,还请说明您的操作及其原因。这样,OP和任何将来遇到相同问题的读者都可以从您的答案中真正学到一些东西,而不仅仅是复制/粘贴并在明天再次提出相同的问题。
Oldskool

3

我在http://webcheatsheet.com/php/get_current_page_url.php找到了

将以下代码添加到页面:

<?php
function curPageURL() {
 $pageURL = 'http';
 if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";}
 $pageURL .= "://";
 if ($_SERVER["SERVER_PORT"] != "80") {
  $pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
 } else {
  $pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
 }
 return $pageURL;
}
?>

现在,您可以使用以下行获取当前页面的URL:

<?php
  echo curPageURL();
?>

有时仅需要获取页面名称。以下示例显示了如何执行此操作:

<?php
function curPageName() {
 return substr($_SERVER["SCRIPT_NAME"],strrpos($_SERVER["SCRIPT_NAME"],"/")+1);
}

echo "The current page name is ".curPageName();
?>

2
$http = isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on'? "https://" : "http://";

$url = $http . $_SERVER["SERVER_NAME"] . $_SERVER['REQUEST_URI'];

2

试试这个。这个对我有用。

/*url.php file*/

trait URL {
    private $url = '';
    private $current_url = '';
    public $get = '';

    function __construct()
    {
        $this->url = $_SERVER['SERVER_NAME'];
        $this->current_url = $_SERVER['REQUEST_URI'];

        $clean_server = str_replace('', $this->url, $this->current_url);
        $clean_server = explode('/', $clean_server);

        $this->get = array('base_url' => "/".$clean_server[1]);
    }
}

像这样使用:

<?php
/*
Test file

Tested for links:

http://localhost/index.php
http://localhost/
http://localhost/index.php/
http://localhost/url/index.php    
http://localhost/url/index.php/  
http://localhost/url/ab
http://localhost/url/ab/c
*/

require_once 'sys/url.php';

class Home
{
    use URL;
}

$h = new Home();

?>

<a href="<?=$h->get['base_url']?>">Base</a>

2

简单的把戏:

$host  = $_SERVER['HTTP_HOST'];
$host_upper = strtoupper($host);
$path   = rtrim(dirname($_SERVER['PHP_SELF']), '/\\');
$baseurl = "http://" . $host . $path . "/";

URL看起来像这样: http://example.com/folder/


2

您可以这样做,但对不起,我的英语还不够好。

首先,使用此简单代码获取家庭基本网址。

我已经在本地服务器和公共服务器上测试了此代码,结果很好。

<?php

function home_base_url(){   

// first get http protocol if http or https

$base_url = (isset($_SERVER['HTTPS']) &&

$_SERVER['HTTPS']!='off') ? 'https://' : 'http://';

// get default website root directory

$tmpURL = dirname(__FILE__);

// when use dirname(__FILE__) will return value like this "C:\xampp\htdocs\my_website",

//convert value to http url use string replace, 

// replace any backslashes to slash in this case use chr value "92"

$tmpURL = str_replace(chr(92),'/',$tmpURL);

// now replace any same string in $tmpURL value to null or ''

// and will return value like /localhost/my_website/ or just /my_website/

$tmpURL = str_replace($_SERVER['DOCUMENT_ROOT'],'',$tmpURL);

// delete any slash character in first and last of value

$tmpURL = ltrim($tmpURL,'/');

$tmpURL = rtrim($tmpURL, '/');


// check again if we find any slash string in value then we can assume its local machine

    if (strpos($tmpURL,'/')){

// explode that value and take only first value

       $tmpURL = explode('/',$tmpURL);

       $tmpURL = $tmpURL[0];

      }

// now last steps

// assign protocol in first value

   if ($tmpURL !== $_SERVER['HTTP_HOST'])

// if protocol its http then like this

      $base_url .= $_SERVER['HTTP_HOST'].'/'.$tmpURL.'/';

    else

// else if protocol is https

      $base_url .= $tmpURL.'/';

// give return value

return $base_url; 

}

?>

// and test it

echo home_base_url();

输出将是这样的:

local machine : http://localhost/my_website/ or https://myhost/my_website 

public : http://www.my_website.com/ or https://www.my_website.com/

home_base_urlindex.php您的网站上使用功能并对其进行定义

然后您可以使用此功能通过url这样加载脚本,css和内容

<?php

echo '<script type="text/javascript" src="'.home_base_url().'js/script.js"></script>'."\n";

?>

将创建这样的输出:

<script type="text/javascript" src="http://www.my_website.com/js/script.js"></script>

如果此脚本可以正常运行,!


2
请不要在您的答案中包含指向您网站的链接
ChrisF

1

我刚刚整理了一个对我有用的东西。它将返回一个包含2个元素的数组。第一个元素是?之前的所有内容。第二个是一个包含关联数组中所有查询字符串变量的数组。

function disectURL()
{
    $arr = array();
    $a = explode('?',sprintf(
        "%s://%s%s",
        isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off' ? 'https' : 'http',
        $_SERVER['SERVER_NAME'],
        $_SERVER['REQUEST_URI']
    ));

    $arr['base_url']     = $a[0];
    $arr['query_string'] = [];

    if(sizeof($a) == 2)
    {
        $b = explode('&', $a[1]);
        $qs = array();

        foreach ($b as $c)
        {
            $d = explode('=', $c);
            $qs[$d[0]] = $d[1];
        }
        $arr['query_string'] = (count($qs)) ? $qs : '';
    }

    return $arr;

}

注意:这是上面maček提供的答案的扩展。(应贷方贷方。)



0
function server_url(){
    $server ="";

    if(isset($_SERVER['SERVER_NAME'])){
        $server = sprintf("%s://%s%s", isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off' ? 'https' : 'http', $_SERVER['SERVER_NAME'], '/');
    }
    else{
        $server = sprintf("%s://%s%s", isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off' ? 'https' : 'http', $_SERVER['SERVER_ADDR'], '/');
    }
    print $server;

}

0

尝试使用: $_SERVER['SERVER_NAME'];

我用它来回显网站的基本URL来链接我的CSS。

<link href="https://stackoverflow.com//<?php echo $_SERVER['SERVER_NAME']; ?>/assets/css/your-stylesheet.css" rel="stylesheet" type="text/css">

希望这可以帮助!


0

我有与OP相同的问题,但可能有不同的要求。我创建了这个功能...

/**
 * Get the base URL of the current page. For example, if the current page URL is
 * "https://example.com/dir/example.php?whatever" this function will return
 * "https://example.com/dir/" .
 *
 * @return string The base URL of the current page.
 */
function get_base_url() {

    $protocol = filter_input(INPUT_SERVER, 'HTTPS');
    if (empty($protocol)) {
        $protocol = "http";
    }

    $host = filter_input(INPUT_SERVER, 'HTTP_HOST');

    $request_uri_full = filter_input(INPUT_SERVER, 'REQUEST_URI');
    $last_slash_pos = strrpos($request_uri_full, "/");
    if ($last_slash_pos === FALSE) {
        $request_uri_sub = $request_uri_full;
    }
    else {
        $request_uri_sub = substr($request_uri_full, 0, $last_slash_pos + 1);
    }

    return $protocol . "://" . $host . $request_uri_sub;

}

...顺便说一句,我用它来帮助创建应用于重定向的绝对URL。


0
$some_variable =  substr($_SERVER['PHP_SELF'], 0, strrpos($_SERVER['REQUEST_URI'], "/")+1);

你会得到类似

lalala/tralala/something/

这个“问答”条目上有很多代码都属于危险区域,这一代码也是如此,尤其是由于使用了PHP_SELF。
hakre

0

只需测试并获得结果。

// output: /myproject/index.php
$currentPath = $_SERVER['PHP_SELF'];
// output: Array ( [dirname] => /myproject [basename] => index.php [extension] => php [filename] => index ) 
$pathInfo = pathinfo($currentPath);
// output: localhost
$hostName = $_SERVER['HTTP_HOST'];
// output: http://
$protocol = strtolower(substr($_SERVER["SERVER_PROTOCOL"],0,5))=='https://'?'https://':'http://';
// return: http://localhost/myproject/
echo $protocol.$hostName.$pathInfo['dirname']."/";

0

就我而言,我需要类似于文件中RewriteBase包含的基本URL .htaccess

不幸RewriteBase.htaccess是,用PHP不可能简单地从文件中检索。但是有可能在.htaccess文件中设置环境变量,然后在PHP中检索该变量。只需检查以下代码:

.htaccess

SetEnv BASE_PATH /

index.php

现在,我在模板的基础标签中使用此标签(在页面的头部):

<base href="<?php echo ! empty( getenv( 'BASE_PATH' ) ) ? getenv( 'BASE_PATH' ) : '/'; ?>"/>

因此,如果变量不为空,则使用它。否则回退到/默认的基本路径。

根据环境,基本URL将始终是正确的。我使用/本地和生产网站上的基本网址。但/foldername/要针对暂存环境。

.htaccess因为RewriteBase是不同的,所以它们都拥有自己的位置。所以这个解决方案对我有用。


0

看看$ _SERVER ['REQUEST_URI'],即

$current_url = "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";

如果要同时支持HTTP和HTTPS,则可以使用此解决方案

$current_url = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? "https" : "http") . "://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";

这对我有用。希望对您有帮助。感谢您提出这个问题。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.