PHP : Get client IP address
Knowing who is accessing your web server can be useful for tracking a user's activity. In this tutorial, we will learn how to get client IP address with PHP.
In a straight forward manner, this should be get your the IP address of a client
$_SERVER['REMOTE_ADDR']
However, sometimes the user access your web server via a proxy or load balancer ( such as in cloud hosting, behind a LAN, etc ) and the above code will give you the IP address of the proxy or load balancer.
You need to get the HTTP Request header information "X-Forwarded-For (XFF)" in order to get the real IP address of the client. To do that you can use
$_SERVER['HTTP_X_FORWARDED_FOR']
and
$_SERVER['HTTP_CLIENT_IP']
The PHP code snippet below should do the job :
if (!empty($_SERVER['HTTP_CLIENT_IP'])) {
$client_ip = $_SERVER['HTTP_CLIENT_IP'];
} elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
$client_ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
} else {
$client_ip = $_SERVER['REMOTE_ADDR'];
}
Hope this simple tutorial can be useful to you.
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+24k Golang : Call function from another package
+9.6k Golang : Accessing content anonymously with Tor
+7.5k Golang : Scanf function weird error in Windows
+5.3k Golang : Convert lines of string into list for delete and insert operation
+17.1k Golang : Covert map/slice/array to JSON or XML format
+11.7k Golang : Calculations using complex numbers example
+14.2k Golang : Fix image: unknown format error
+12.2k Golang : md5 hash of a string
+9.2k Golang : Generate Codabar
+7k Golang : How to setup a disk space used monitoring service with Telegram bot
+5.3k JavaScript/JQuery : Redirect page examples
+27.8k PHP : Count number of JSON items/objects