php get user ip code example
Example 1: how to get ip address of client using php
The simplest way to collect the Client/Visitor IP address using PHP is the REMOTE_ADDR.
Pass the 'REMOTE_ADDR' in PHP $_SERVER variable. It will return the IP address of the visitor who is currently viewing the webpage.
Get the IP address of the website
/*
I Hope it will help you.
Namaste
Stay Home Stay Safe
*/
Example 2: php get user ip
$ip = $_SERVER['REMOTE_ADDR'];
Example 3: php get client ip
$_SERVER['REMOTE_ADDR']
Example 4: php get ip address
$clientIPAddress=$_SERVER['REMOTE_ADDR'];
Example 5: get user ip in php
function getIp() {
$ip = $_SERVER['REMOTE_ADDR'];
if (!empty($_SERVER['HTTP_CLIENT_IP'])) {
$ip = $_SERVER['HTTP_CLIENT_IP'];
} elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
$ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
}
return $ip;
}
Example 6: php get user ip address
#to best handle proxies use this:
if (!empty($_SERVER['HTTP_CLIENT_IP'])) {
$ip = $_SERVER['HTTP_CLIENT_IP'];
} elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
$ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
} else {
$ip = $_SERVER['REMOTE_ADDR'];
}