php 获取Web服务器的真实传出IP地址

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 获取Web服务器的真实传出IP地址相关的知识,希望对你有一定的参考价值。

/* 
There are times when you need to find out of the IP address your domain maps to in DNS is the same
as the IP address of your web server's outgoing interface. This is particularly useful when dealing
with APIs such as eNOM. The following just performs a simple query agains http://ipecho.net/plain to
optain your server's outgoing IP. This can be modified with any number of similar services.
*/

$realIP = file_get_contents("http://ipecho.net/plain");
echo $realIP;

以上是关于php 获取Web服务器的真实传出IP地址的主要内容,如果未能解决你的问题,请参考以下文章

如何查找传出IP地址所属的应用服务?

web服务器获取请求客户端真实地址的方法

PHP获取客户端的真实IP

PHP获取用户的真实IP地址

X-Forwarded-For的一些理解

X-Forwarded-For的一些理解