免费的ip数据库淘宝IP地址库简介和PHP调用实例
程序员文章站
2024-02-05 22:26:58
一、关于淘宝ip地址库
我们目前提供的服务包括:1. 根据用户提供的ip地址,快速查询出该ip地址所在的地理信息和地理相关的信息,包括国家、省、市和运营商。2. 用户可以...
一、关于淘宝ip地址库
我们目前提供的服务包括:
1. 根据用户提供的ip地址,快速查询出该ip地址所在的地理信息和地理相关的信息,包括国家、省、市和运营商。
2. 用户可以根据自己所在的位置和使用的ip地址更新我们的服务内容。
我们的优势:
1. 提供国家、省、市、县、运营商全方位信息,信息维度广,格式规范。
2. 提供完善的统计分析报表,省准确度超过99.8%,市准确度超过96.8%,数据质量有保障。
二、接口说明
1. 请求接口(get):
http://ip.taobao.com/service/getipinfo.php?ip=[ip地址字串]
2. 响应信息:
(json格式的)国家 、省(自治区或直辖市)、市(县)、运营商
3. 返回数据格式:
复制代码 代码如下:
{"code":0,"data":{"ip":"210.75.225.254","country":"\u4e2d\u56fd","area":"\u534e\u5317",
"region":"\u5317\u4eac\u5e02","city":"\u5317\u4eac\u5e02","county":"","isp":"\u7535\u4fe1",
"country_id":"86","area_id":"100000","region_id":"110000","city_id":"110000",
"county_id":"-1","isp_id":"100017"}}
"region":"\u5317\u4eac\u5e02","city":"\u5317\u4eac\u5e02","county":"","isp":"\u7535\u4fe1",
"country_id":"86","area_id":"100000","region_id":"110000","city_id":"110000",
"county_id":"-1","isp_id":"100017"}}
其中code的值的含义为,0:成功,1:失败。
注意:为了保障服务正常运行,每个用户的访问频率需小于10qps。
三、ip库包含数据
1. ip数量统计
2. ip准确度、覆盖度统计
四、ip库能干些什么事情?
1.提醒用户不在常用地登录
2.全球报表
3.全国性报表
4.按提供商来做全国报表
5.按地区来统计提供商
6.其它
五、php调用实例
复制代码 代码如下:
<?php
/**
* 获取用户真实 ip
*/
function getip(){
static $realip;
if (isset($_server)){
if (isset($_server["http_x_forwarded_for"])){
$realip = $_server["http_x_forwarded_for"];
} else if (isset($_server["http_client_ip"])) {
$realip = $_server["http_client_ip"];
} else {
$realip = $_server["remote_addr"];
}
}else {
if (getenv("http_x_forwarded_for")){
$realip = getenv("http_x_forwarded_for");
} else if (getenv("http_client_ip")) {
$realip = getenv("http_client_ip");
} else {
$realip = getenv("remote_addr");
}
}
return $realip;
}
/**
* 获取 ip 地理位置
* 淘宝ip接口
* @return: array
*/
function getcity($ip)
{
$url="http://ip.taobao.com/service/getipinfo.php?ip=".$ip;
$ip=json_decode(file_get_contents($url));
if((string)$ip->code=='1'){
return false;
}
$data = (array)$ip->data;
return $data;
}
print_r(getcity('123.22.34.213'));
?>
六:c#调用实例
复制代码 代码如下:
taobaoip result1 = taobaoiphelper.getip("8.8.8.8");
if (result1.code == 0)
{
console.writeline(string.format("调用成功。该ip的国家为{0},省份为{1},城市为{2},运营商为{3}"
, result1.data.country, result1.data.region, result1.data.city, result1.data.isp)
);
}
else
{
console.writeline("失败,原因为:"+result1.errormsg);
}
taobaoip[] result2 = taobaoiphelper.getdomain("lixin.me");
foreach (taobaoip item in result2)
{
if (item.code == 0)
{
console.writeline(string.format("调用成功。该ip的国家为{0},省份为{1},城市为{2},运营商为{3}"
, item.data.country, item.data.region, item.data.city, item.data.isp)
);
}
else
{
console.writeline("失败,原因为:" + item.errormsg);
}
}
上一篇: thinkphp实现数组分页示例
下一篇: 利用python获得时间的实例说明