您的位置:首页 > 其它

网易有道IP,身份证号, 手机号归属地API查询接口

2012-01-16 15:25 441 查看
网易有道IP,身份证号, 手机号归属地API查询接口 http://www.youdao.com/smartresult-xml/search.s?type=ip&q=ip地址 GET后返回XML数据, 包含原IP及归属地.
此外type还可以: mobile(手机号), id(身份证). 尚未发现有限制
网易有道mobile(手机号): http://www.youdao.com/smartresult-xml/search.s?type=mobile&q=手机号码 网易有道id(身份证): http://www.youdao.com/smartresult-xml/search.s?type=id&q=身份证号 附上PHP代码吧:
function ip_location($ip) {

$u = "http://www.youdao.com/smartresult-xml/search.s?type=ip&q={$ip}";

$r = utility::HttpRequest($u);

preg_match("#<location>(.+)</location>#Ui", $r, $m);

return strval($m[1]);

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐