Skip to content

Instantly share code, notes, and snippets.

@ryanscherler
Last active July 5, 2016 19:46
Show Gist options
  • Save ryanscherler/006c660a0cda875eda9336dccbe19c3a to your computer and use it in GitHub Desktop.
Save ryanscherler/006c660a0cda875eda9336dccbe19c3a to your computer and use it in GitHub Desktop.
Get approximate geo location from public IP.
<?php
$ip = file_get_contents('https://api.ipify.org');
$location = file_get_contents('http://freegeoip.net/json/'.$ip);
print_r($location)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment