Home  >  Article  >  Backend Development  >  PHP code to obtain the client's external network/public network IP_PHP tutorial

PHP code to obtain the client's external network/public network IP_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 17:44:231067browse

Leng Feng: Both methods are available. The first one uses the built-in curl support, and the second one is more general. It is recommended to use the second one.
Method 1: curl

function get_onlineip() {
$ch = curl_init(http://www.ip138.com/ip2city.asp);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$a = curl_exec($ch);
preg_match(/[(.*)]/, $a, $ip);
return $ip[1];
}

Method 2: $_SERVER[HTTP_X_FORWARDED_FOR] to get the corresponding address

function get_onlineip() {
$onlineip = ;
if(getenv(HTTP_CLIENT_IP) && strcasecmp(getenv(HTTP_CLIENT_IP), unknown)) {
$onlineip = getenv (HTTP_CLIENT_IP);
} elseif(getenv(HTTP_X_FORWARDED_FOR) && strcasecmp(getenv(HTTP_X_FORWARDED_FOR), unknown)) {
$onlineip = getenv(HTTP_X_FORWARDED_FOR);
} elseif(getenv(REMOTE_ADDR) && str casecmp( getenv(REMOTE_ADDR), unknown)) {
$onlineip = getenv(REMOTE_ADDR);
} elseif(isset($_SERVER[REMOTE_ADDR]) && $_SERVER[REMOTE_ADDR] && strcasecmp($_SERVER[REMOTE_ADDR], unknown )) {
$onlineip = $_SERVER[REMOTE_ADDR];
}
return $onlineip;
}

echo get_onlineip();
?>

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/478747.htmlTechArticleLeng Feng: Both methods are available. The first one uses the built-in curl support, and the second one is more general. It is recommended to use the second one. Method 1: curl function get_onlineip() { $ch = curl_init...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn