Skip to main content

Finding Geographical location from IP address


How to find the country from IP Address?


After a long search i could find a solution for that.

First function is for fetching contents from an API url
the API Url used here is http://api.hostip.info/?ip=Your IP Address

This function will work if your server allows thi stype of fetching from another server


 
function getCountryCityFromIP($ipAddr)
{
//function to find country and city from IP address
//Developed by Roshan Bhattarai http://roshanbh.com.np
//verify the IP address


ip2long($ipAddr)== -1 || ip2long($ipAddr) === false ? trigger_error("Invalid IP", E_USER_ERROR) : "";


        $ipDetail=array(); //initialize a blank array
        //get the XML result from hostip.info
        $xml = file_get_contents("http://api.hostip.info/?ip=".$ipAddr);



                //get the city name inside the node and
                preg_match("@(\s)*(.*?)@si",$xml,$match);
                //assing the city name to the array
                $ipDetail['city']=$match[2];
                //get the country name inside the node and
                preg_match("@(.*?)@si",$xml,$matches);
                //assign the country name to the $ipDetail array
                $ipDetail['country']=$matches[1];
                //get the country name inside the node and
                preg_match("@(.*?)@si",$xml,$cc_match);
                $ipDetail['country_code']=$cc_match[1]; //assing the country code to array
                //return the array containing city, country and country code
                return $ipDetail;

}

?>



If  Your server doesnot allow the above operation then we can use curl for doing it
Here using curl we get the out as XML from the API url to which we submits our request
the XMl string is parsed using php's XML Parsers and a response array is returned by the function

 

 
function getCountryCityFromIP_Curl($ipAddr){

// Initialize the cURL session

$ch = curl_init();
    $ipDetail=array(); //initialize a blank array
//Set the URL of the page or file to download.

//curl_setopt($ch, CURLOPT_URL, "http://api.hostip.info/?ip=".$ipAddr);
curl_setopt($ch, CURLOPT_URL, "http://api.ipinfodb.com/v2/ip_query.php?key=<your_api_key>&ip=".$ipAddr."&timezone=false");

//Ask cURL to return the contents in a variable
//instead of simply echoing them to the browser.

curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
//Execute the cURL session

$contents = curl_exec ($ch);
// Close cURL session

curl_close ($ch);
$xml_parser = xml_parser_create();
xml_parse_into_struct($xml_parser, $contents, $vals, $index);
xml_parser_free($xml_parser);

$params = array();
$level = array();
foreach ($vals as $xml_elem) {
  if ($xml_elem['type'] == 'open') {
    if (array_key_exists('attributes',$xml_elem)) {
      list($level[$xml_elem['level']],$extra) = array_values($xml_elem['attributes']);
    } else {
      $level[$xml_elem['level']] = $xml_elem['tag'];
    }
  }
  if ($xml_elem['type'] == 'complete') {
    $start_level = 1;
    $php_stmt = '$params';
    while($start_level < $xml_elem['level']) {
      $php_stmt .= '[$level['.$start_level.']]';
      $start_level++;
    }
    $php_stmt .= '[$xml_elem[\'tag\']] = $xml_elem[\'value\'];';
    eval($php_stmt);
  }
}

return  $params['RESPONSE'];


}
?>
 


//HOW TO CALL THIS FUNCTION

getCountryCityFromIP_Curl("192.178.0.11");
getCountryCityFromIP("100.123.0.11")
?>




In the second function that uses curl we are using the API webservice url
http://api.ipinfodb.com/v2/ip_query.php?key=<your_api_key>&ip=<your_ip_address>&timezone=false

example API request url:

http://api.ipinfodb.com/v2/ip_query.php?key=767ffd655&ip=112.189.98.110&timezone=false

This is a free webservice, but to access this you will need an API Key. To get An Api Key register with the website at the following location.

http://ipinfodb.com/register.php

you will get an activation email in your inbox, click the link and activate you account. After that generate an API key for you and put this key in your Request API Url.

Comments

Popular posts from this blog

Deep-sea Anglerfish Black Seadevil Scary looking creature Video

Deep-sea Anglerfish are the strange and elusive creature that are very rarely observed in their natural habitat. Fewer than half a dozen have ever been captured on film or video by deep-diving research vehicles.They are mostly  found in tropical to temperate waters of the Indian,Pacific and Atlantic Oceans.

How to use WiFi adapter on Ubuntu 16.04 desktop PC - Realtek RTL8188EUS 802.11n Wireless USB Network Adapter Driver installation

Installation of Realtek RTL8188EUS 802.11n Wireless USB Network Adapter on Desktop PC having Ubuntu 16.04 OS My PC is running in Ubuntu 16.04 OS, recently I thought of using a dongle wife adapter to access our home's Wifi network. For this I used Realtek RTL8188EUS 802.11n Wireless USB Network Adapter ( Model No: OT-WUA950NM ) This small device cost around Rupees 250/- to Rs 300/- in India. I did the following steps for installation of this Realtek Nano Wifi Adapter: Plug Realtek RTL8188EUS 802.11n Wireless USB Network Adapter to your PC's USB port, Take the terminal application and run the command "lsusb" to list the plugged in usb devices: Myhome:~$ lsusb Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 001 Device 003: ID 0bda:8179 Realtek Semiconductor Corp. R...

Cheap Tourist boat service in Alapuzha - Enjoy the beauty of Aleppey Back waters using govt owned Tourist boat services

Feasible Tourist boat services in Alapuzha Aleppey / Alappuzha is one of the beautiful places in kerala. Aleppey district is famous for it amazing backwaters , you can enjoy house boat rides here. Kerala State Water transport department  (Kerala SWTD) provides facilities for tourists to enjoy the beauty of backwater by paying much less charge when compared to private boat services. There are boat services from Aleppey boat station which takes tourists to inner parts of the backwaters.


Urgent Openings for PHP trainees, Andriod / IOS developers and PHP developers in Kochi Trivandrum Calicut and Bangalore. Please Send Your updated resumes to recruit.vo@gmail.com   Read more »
Member
Search This Blog