新浪 ip 地址库

来源:互联网 发布:oracle sql调优技巧 编辑:程序博客网 时间:2024/05/16 17:33


API地址:http://int.dpool.sina.com.cn/iplookup/iplookup.php

帮助
1
2
3
4
5
6
7
8
functionget_location($ip){
 $curl= curl_init();
        curl_setopt($curl,CURLOPT_URL,"http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=json&ip=".$ip);
        $location= curl_exec($curl);
        $location= json_decode($location);
        if($location===FALSE)return "";
        returnempty($location->desc) ?$location->province.$location->city.$location->district.$location->isp : $location->desc;
}

update:
2012年又收集到一些ip地址转换的接口,其中发现腾讯的api已经挂了。
腾讯:http://fw.qq.com/ipaddress
新浪的IP地址查询接口:http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js
新浪多地域测试方法:http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js&ip=12.130.132.30
搜狐IP地址查询接口(默认GBK):http://pv.sohu.com/cityjson
搜狐IP地址查询接口(可设置编码):http://pv.sohu.com/cityjson?ie=utf-8
搜狐另外的IP地址查询接口:http://txt.go.sohu.com/ip/soip
网易有道IP地址API接口:http://www.youdao.com/smartresult-xml/search.s?type=ip&q=115.156.238.114

API地址:http://int.dpool.sina.com.cn/iplookup/iplookup.php

帮助
1
2
3
4
5
6
7
8
functionget_location($ip){
 $curl= curl_init();
        curl_setopt($curl,CURLOPT_URL,"http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=json&ip=".$ip);
        $location= curl_exec($curl);
        $location= json_decode($location);
        if($location===FALSE)return "";
        returnempty($location->desc) ?$location->province.$location->city.$location->district.$location->isp : $location->desc;
}

update:
2012年又收集到一些ip地址转换的接口,其中发现腾讯的api已经挂了。
腾讯:http://fw.qq.com/ipaddress
新浪的IP地址查询接口:http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js
新浪多地域测试方法:http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js&ip=12.130.132.30
搜狐IP地址查询接口(默认GBK):http://pv.sohu.com/cityjson
搜狐IP地址查询接口(可设置编码):http://pv.sohu.com/cityjson?ie=utf-8
搜狐另外的IP地址查询接口:http://txt.go.sohu.com/ip/soip
网易有道IP地址API接口:http://www.youdao.com/smartresult-xml/search.s?type=ip&q=115.156.238.114

0 0
原创粉丝点击