我的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。
答案 0 :(得分:0)
听起来像是在寻找
$_SERVER['SERVER_PORT']
表示端口
和
$_SERVER['REQUEST_URI']
为uri