PHP 站点根 url
我正在通过贝宝进行付款,使用将商品详细信息提交给贝宝。 这里我需要指定我的notify.php的链接。 为此,我需要动态获取我的网站根目录。 我怎样才能得到它。
我的系统文件夹结构是 C:\wamp\www\website\store_esp\notify.php
和我的 notification.php 的 url 应该是 http://domainname/store_esp/notify.php
目前我的域名是 http://localhost/website/
如何使用 php.ini 动态获取域名?
I am doing a payment by paypal using submit the item details to paypal.
Here I need to specify a link of my notify.php.
For this I need to get my site root dynamically.
how can I get it.
my system folder structure is
C:\wamp\www\website\store_esp\notify.php
and my url for notify.php should be
http://domainname/store_esp/notify.php
Presently my domail name is http://localhost/website/
How can I get the domainname dynamically using php.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
该 PHP 函数返回完整路径的真实 URL。
在此文件中调用pathUrl: http://example.com/shop/index.php
使用别名: http://example.com/alias-name/shop/index.html php
对于子目录: http://example.com/alias -name/shop/inc/config.php
https://stackoverflow.com/a/36101073/3626097
This PHP function returns the real URL of a full path.
Call of pathUrl in this file : http://example.com/shop/index.php
Work with alias : http://example.com/alias-name/shop/index.php
For sub directory : http://example.com/alias-name/shop/inc/config.php
https://stackoverflow.com/a/36101073/3626097
$_SERVER['HTTP_HOST']
将给出域名在上面的 URL 中,域是
localhost
我认为
website
永远不会更改为website1
或website2
,因此您可以在网址中静态提及这一点。$_SERVER['HTTP_HOST']
will give the domain nameIn the above URL the domain is
localhost
As I think the
website
is never changed towebsite1
orwebsite2
so you can statically mention this in your url.使用这个
,然后使用像notify.php这样的文件名
use this
and after this use the filename like notify.php