1. Node.js 구현 코드
var http = require( 'http');
var util = require('util');
/**
* IP 기반의 주소정보 획득
*/
var getIpInfo = function(ip, cb) {
var sina_server = 'http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=json&ip=';
var url = sina_server ip;
http.get(url, function (res) {
var code = res.statusCode;
if (code == 200) {
res.on('data', function(data) {
try {
cb (null, JSON.parse(data));
} 잡기(오류) { | });
}
}).on('오류', function(e) { cb(e) ; });
};
getIpInfo('220.181.111.85' , function(err, msg) {
console.log('city: ' msg.city);
콘솔 .log('msg: ' util.inspect(msg, true, 8));
})
요청 결과:
코드 복사
코드는 다음과 같습니다:도시: 쉬저우{ "ret": 1, "start": "49.68.0.0",
"end": "49.68.255.255",
"country": "China",
"province": "Jiangsu",
"city": "Xuzhou",
" District": "",
"isp": "Telecom",
"type": " ",
"desc": ""
}
2. PHP 구현 code
코드 복사
코드는 다음과 같습니다.$ip = "220.181.111.85";$url = "http://int.dpool.sina.com.cn/ iplookup/iplookup.php?format=json&ip=$ip";
$data = file_get_contents( $url);
$result = json_decode($data);
echo "도시:" . $result- >city . "
";
print_r($result);
?>
요청 결과:
코드 복사
[start ] => 49.68.0.0
[end] => 49.68.255.255
[국가] => 중국
[성] => 장쑤성
[시] =>