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));
} catch (エラー) ; });
}
}).on('error', 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",
"終了": "49.68.255.255"、
"国": "中国"、
"省": "江蘇"、
"都市": "徐州"、
" 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 "City:" . $result- >city .
print_r($result);
?>
リクエスト結果:
コードをコピー
[start ] => 49.68.0.0
[end] => 49.68.255.255
[国] => 中国
[省] => 徐州
[地区] =>