Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 괌
- 파주골프장
- 덕소골프샵
- 제주도눈
- 야생개복숭아 판매
- 개복숭아 판매
- 자연산 개복숭아
- 제주도
- 포천가볼만한곳
- 포천투어
- 제주도눈썰매
- 조경철천문대
- 포천온천
- 개복숭아
- 돌복숭아
- 휘닉스파크
- wp-900
- 자연산개복숭아
- 제주도설경
- 야생개복숭아
- 포천수영장
- 충주골프장
- 괌자유여행
- 경기북부골프장
- 개복숭아판매
- 서원힐스
- 잠실수영장
- 태안수영장펜션
- LGG6
- 한라산
Archives
- Today
- Total
Live Brilliant
IP접속 위치 정보 가져오기 본문
IPInfoDB.com 에서 제공하는 API에 따라 get 방식으로 요청하면 xml 형태로 정보를 리턴한다.
<?php function locateIp($ip){ $d = file_get_contents("http://www.ipinfodb.com/ip_query.php?ip=$ip&output=xml"); //Use backup server if cannot make a connection if (!$d){ $backup = file_get_contents("http://backup.ipinfodb.com/ip_query.php?ip=$ip&output=xml"); $answer = new SimpleXMLElement($backup); if (!$backup) return false; // Failed to open connection }else{ $answer = new SimpleXMLElement($d); } $country_code = $answer->CountryCode; $country_name = $answer->CountryName; $region_name = $answer->RegionName; $city = $answer->City; $zippostalcode = $answer->ZipPostalCode; $latitude = $answer->Latitude; $longitude = $answer->Longitude; $timezone = $answer->Timezone; $gmtoffset = $answer->Gmtoffset; $dstoffset = $answer->Dstoffset; //Return the data as an array return array('ip' => $ip, 'country_code' => $country_code, 'country_name' => $country_name, 'region_name' => $region_name, 'city' => $city, 'zippostalcode' => $zippostalcode, 'latitude' => $latitude, 'longitude' => $longitude, 'timezone' => $timezone, 'gmtoffset' => $gmtoffset, 'dstoffset' => $dstoffset); } //Usage example $ip = "74.125.45.100"; $ip_data = locateIp($ip); echo "IP : " . $ip_data['ip'] . "\n"; echo "Country code : " . $ip_data['country_code'] . "\n"; echo "Country name : " . $ip_data['country_name'] . "\n"; echo "Region name : " . $ip_data['region_name'] . "\n"; echo "City : " . $ip_data['city'] . "\n"; echo "Zip/postal code : " . $ip_data['zippostalcode'] . "\n"; echo "Latitude : " . $ip_data['latitude'] . "\n"; echo "Longitude : " . $ip_data['longitude'] . "\n"; echo "Timezone : " . $ip_data['timezone'] . "\n"; echo "GmtOffset : " . $ip_data['gmtoffset'] . "\n"; echo "DstOffset : " . $ip_data['dstoffset'] . "\n"; ?>
'개발은 핵찜이야 > PHP' 카테고리의 다른 글
일자 ( 잔여일 구하기 함수) (0) | 2012.04.13 |
---|---|
whois로 도메인 검색을 이용한 해외IP 구분 (0) | 2012.04.13 |
php 재귀함수 (0) | 2012.04.13 |
php 엑셀파일 생성시 숫자->텍스트로 생성 (0) | 2012.04.13 |
PHP 클래스 개념잡기 (0) | 2012.04.13 |
Comments