PHP一些可以查询IP地理位置、身份证所在地、手机归属地的接口

来源:互联网 发布:windows取消激活状态 编辑:程序博客网 时间:2024/05/09 12:54
<?php
02/*
03新浪的IP查询接口:
04新浪的:http://counter.sina.com.cn/ip?ip=IP地址
05返回Js数据,感觉不是很精确,可以把问号后面的去掉,直接返回本机对应的IP所在地
06 
07有道的IP查询接口:
08返回XML数据:http://www.yodao.com/smartresult-xml/search.s?type=ip&q=0.0.0.0
09返回JSON数据:http://www.yodao.com/smartresult-xml/search.s?jsFlag=true&type=ip&q=0.0.0.0
10把0.0.0.0换成需查询的IP地址即可,这个应该是用纯真的数据库
11 
12太平洋电脑网IP查询接口:
13http://whois.pconline.com.cn/?ip=0.0.0.0
14把0.0.0.0换成IP地址,页面上还有其他无关内容,这些内容是告诉我们哪些接口可以调用、接口调用参数和使用方法等
15 
16查询手机号码归属地接口:
17返回XML数据:http://www.youdao.com/smartresult-xml/search.s?type=mobile&q=13888880000
18返回JSON数据:http://www.youdao.com/smartresult-xml/search.s?jsFlag=true&type=mobile&q=13888880000
19 
20身份证查询接口:
21返回XML数据:http://www.youdao.com/smartresult-xml/search.s?type=id&q=身份证号
22返回JSON数据:http://www.youdao.com/smartresult-xml/search.s?jsFlag=true&type=id&q=身份证号
23*/
24echo file_get_contents("接口网址和参数");
25?>