Created
October 15, 2017 15:37
-
-
Save hboon/48533e6d76fe5f37083a0c8127cb5954 to your computer and use it in GitHub Desktop.
Using IP Sidekick for geolocation in PHP
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
//Using IP Sidekick for geolocation in PHP | |
//[email protected] | |
//https://ipsidekick.com | |
//This uses the free plan which limits you to 1440 lookups/day. | |
//For a higher rate limit, look at our paid plans at https://ipsidekick.com | |
function resolveIP($ip) { | |
$string = file_get_contents("https://ipsidekick.com/{$ip}"); | |
$json = json_decode($string); | |
return $json->country->name; | |
//These fields are available: | |
//return json->ip; | |
//return json->country->code; | |
//return json->country->name; | |
//return json->currency->code; | |
//return json->currency->decimals; | |
//return json->currency->name; | |
//return json->timeZone->gmtOffset; | |
//return json->timeZone->name; | |
//return json->holiday; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment