带有localhost或127.0.0.1的$ _SERVER [“HTTP_HOST”]

时间:2018-01-31 12:31:12

标签: php curl

我的php脚本安装在不同的主机上

例如

http://192.6.6.2/

https://192.168.2.2:50505/

http://example.net:22222/

http://example.net:22222/any_folder

如果我想使用localhost url或ip 127.0.0.1 url从“file-1.php”卷曲我的“file-2.php”,那么通用方法是什么?

例如在上述情况下

curl http://localhost/

curl https://localhost:50505/

curl http://localhost:22222/

curl http://localhost:22222/any_folder

简而言之,我想要$_SERVER["HTTP_HOST"]但需要本地IP或localhost。

1 个答案:

答案 0 :(得分:0)

听起来像是在寻找

$_SERVER['SERVER_PORT']

表示端口

$_SERVER['REQUEST_URI']

为uri