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
+12.4k Golang : Split strings into command line arguments
+7.6k Golang : Handling Yes No Quit query input
+16.8k Golang : Delete files by extension
+10.1k Golang : Sort and reverse sort a slice of integers
+21.1k PHP : Convert(cast) int to double/float
+11.2k Golang : Generate random elements without repetition or duplicate
+11.6k Golang : How to flush a channel before the end of program?
+13.4k Golang : How to calculate the distance between two coordinates using Haversine formula
+9.1k Golang : GMail API create and send draft with simple upload attachment example
+6.9k Golang : Experimental emojis or emoticons icons programming language
+14.7k Golang : Execute function at intervals or after some delay
+22.5k Golang : Read directory content with filepath.Walk()