php网站根网址

时间:2010-12-18 07:13:25

标签: php paypal payment-processing

我正在使用PayPal付款,并将项目详细信息提交给paypal。 在这里,我需要指定我的notify.php的链接。 为此,我需要动态地获取我的站点根目录。 我怎么能得到它。

我的系统文件夹结构是      C:\瓦帕\ WWW \网站\ store_esp \ notify.php

我的notify.php的网址应该是      http://domainname/store_esp/notify.php

目前我的电子邮件名称为http://localhost/website/

如何使用php动态获取域名。

3 个答案:

答案 0 :(得分:4)

$_SERVER['HTTP_HOST']会提供域名

 http://localhost/website

在上述网址中,域名为localhost 我认为website永远不会更改为website1website2,因此您可以在网址中静态提及此内容。

答案 1 :(得分:4)

使用此

http://".$_SERVER['HTTP_HOST']."/store_esp/

之后使用文件名如notify.php

答案 2 :(得分:0)

此PHP函数返回完整路径的真实URL。

function pathUrl($dir = __DIR__){

    $root = "";
    $dir = str_replace('\\', '/', realpath($dir));

    //HTTPS or HTTP
    $root .= !empty($_SERVER['HTTPS']) ? 'https' : 'http';

    //HOST
    $root .= '://' . $_SERVER['HTTP_HOST'];

    //ALIAS
    if(!empty($_SERVER['CONTEXT_PREFIX'])) {
        $root .= $_SERVER['CONTEXT_PREFIX'];
        $root .= substr($dir, strlen($_SERVER[ 'CONTEXT_DOCUMENT_ROOT' ]));
    } else {
        $root .= substr($dir, strlen($_SERVER[ 'DOCUMENT_ROOT' ]));
    }

    $root .= '/';

    return $root;
}

在此文件中调用pathUrl:http://example.com/shop/index.php

#index.php

echo pathUrl();
//http://example.com/shop/

使用别名:http://example.com/alias-name/shop/index.php

#index.php

echo pathUrl();
//http://example.com/alias-name/shop/

对于子目录:http://example.com/alias-name/shop/inc/config.php

#config.php

echo pathUrl(__DIR__ . '/../');
//http://example.com/alias-name/shop/

https://stackoverflow.com/a/36101073/3626097