treehouse : what would you like to learn today?
Web Design Web Development iOS Development

Get Geo-IP Information

Last updated on:

Requests a geo-IP-server to check, returns where an IP is located (host, state, country, town).

<?php
       $ip='94.219.40.96';
       print_r(geoCheckIP($ip));
       //Array ( [domain] => dslb-094-219-040-096.pools.arcor-ip.net [country] => DE - Germany [state] => Hessen [town] => Erzhausen )

       //Get an array with geoip-infodata
       function geoCheckIP($ip)
       {
               //check, if the provided ip is valid
               if(!filter_var($ip, FILTER_VALIDATE_IP))
               {
                       throw new InvalidArgumentException("IP is not valid");
               }

               //contact ip-server
               $response=@file_get_contents('http://www.netip.de/search?query='.$ip);
               if (empty($response))
               {
                       throw new InvalidArgumentException("Error contacting Geo-IP-Server");
               }

               //Array containing all regex-patterns necessary to extract ip-geoinfo from page
               $patterns=array();
               $patterns["domain"] = '#Domain: (.*?)&nbsp;#i';
               $patterns["country"] = '#Country: (.*?)&nbsp;#i';
               $patterns["state"] = '#State/Region: (.*?)<br#i';
               $patterns["town"] = '#City: (.*?)<br#i';

               //Array where results will be stored
               $ipInfo=array();

               //check response from ipserver for above patterns
               foreach ($patterns as $key => $pattern)
               {
                       //store the result in array
                       $ipInfo[$key] = preg_match($pattern,$response,$value) && !empty($value[1]) ? $value[1] : 'not found';
               }

               return $ipInfo;
       }

?>
View Comments

Comments

  1. Permalink to comment#

    You should consider caching results too as it will speed it up considerably.
    For small low traffic websites it won’t be too bad but if your expecting to grow it’s something you must look into now. You should also consider that you are relying on the website being up and returning data in a specific way so the regexes could become outdated or broken in the future.
    Just some things to consider.

  2. I really needed this, thanks!

  3. Permalink to comment#

    What would be the best method of getting the users IP address to use with this?

    • Brian
      Permalink to comment#

      $_SERVER['REMOTE_ADDR']

      So, you could call the function like this:

      $ip=$_SERVER['REMOTE_ADDR'];
      geoCheckIP($ip);

  4. I wish I had seen this about 6 months ago… it works brilliantly! I’m going to put it to work on loads of websites right now!

  5. I have been playing and thought this might be useful too… it allows you to redirect or echo a silly statement depending on the user’s location:

    $my_array=geoCheckIP($ip);

    foreach ($my_array as $key => $value){
    if($key=='country'){
    #switch on the country:
    switch ($value) {
    case 'GB - United Kingdom':
    echo "You are visiting from the UK! We love the british!";
    break;
    case 'NZ - New Zealand':
    echo "You're visiting from New Zealand. What's the weather like down under?";
    break;
    case 'US - United States':
    echo "You're visiting from The USA. It must be nice to be in the home of the brave. I'd love to go, but I'm too scared!";
    break;
    case 'CA - Canada':
    echo "You're visiting from Canada. Is it snowing?";
    break;
    case 'AU - Australia':
    echo "You're visiting from Australia. Does the blood rush to your head?";
    break;
    }
    echo '
    '.$key.': '.$value;
    }

    }

  6. Permalink to comment#

    cool – im needing this so that certain states except nebraska can only see some pages.
    what would the entire script look like in this case?

    ie:
    if your in nebraska – it redirects to URL A
    if outside nebraska – it redirects to URL B

    thanks – ryan

  7. Permalink to comment#

    Hi All,

    This is the first part of a formula to get the region automatically from ip.

    In my wufoo form I currently have a region dropdown that is required. Would we be able to use a version of this, possibly with url modifications to dump the region response into hidden wufoo fields?

    Thanks!!

    Matalin

  8. Anthony
    Permalink to comment#

    Thanks great share i needed this will be very helpful for detecting my users real IP an location because for the past few days i am being faced with some spammers.

    http://www.gysms.com

    • Quentin
      Permalink to comment#

      Why you put their adress on this site if they’re spammers ?
      If you’re a developer you should know you’re doing them some backlinking here that’s really not clever …

  9. jatinder
    Permalink to comment#

    Thanks, i needed this one.
    finally this script is working without any errors,

  10. Permalink to comment#

    tidy and functional ….any know how to use this to display post based on user location? example: an event listing site displaying events in user’s location.
    thanks

  11. Debrata V
    Permalink to comment#

    Hi There,
    Really cool, the script is neat and lot of ideas bubblling in my head ;)

    Thanx
    Deb

  12. This is pretty cool, but I don’t think I’ll ever use it on a production server because of the reliance on a third party. What happens if netip.de shuts down all of a sudden?

  13. Hi dude, I want to create my own url shorning service.How to do that?

  14. Savion
    Permalink to comment#

    Hi, the state pattern is throwing me a “not found” error. Please help…

Leave a Comment

Use markdown or basic HTML and be nice.