当前位置:首页 > PHP教程 > php应用 > 列表

免费手机号码归属地API查询接口和PHP使用实例分享

发布:smiling 来源: PHP粉丝网  添加日期:2020-11-08 16:27:22 浏览: 评论:0 

最近在做全国性的行业分类信息网站,需要用到手机号归属地显示功能,于是就穿梭于各大权威站点之间偷来了API的接口地址。 分享出来,大家可以用到就拿去呵。

最近在做全国性的行业分类信息网站,需要用到手机号归属地显示功能,于是就穿梭于各大权威站点之间偷来了API的接口地址。 分享出来,大家可以用到就拿去呵。

一、淘宝网API,代码如下:

API地址: http://tcc.taobao.com/cc/json/mobile_tel_segment.htm?tel=15850781443

参数:

tel:手机号码

返回:JSON

二、拍拍API,代码如下:

API地址: http://virtual.paipai.com/extinfo/GetMobileProductInfo?mobile=15850781443&amount=10000&callname=getPhoneNumInfoExtCallback

参数:

mobile:手机号码

callname:回调函数

amount:未知(必须)

返回:JSON

三、财付通API,代码如下:

API地址: http://life.tenpay.com/cgi-bin/mobile/MobileQueryAttribution.cgi?chgmobile=15850781443

参数:

chgmobile:手机号码

返回:xml

四、百付宝API,代码如下:

API地址: https://www.baifubao.com/callback?cmd=1059&callback=phone&phone=15850781443

参数:

phone:手机号码

callback:回调函数

cmd:未知(必须)

返回:JSON

五、115API,代码如下:

API地址: http://cz.115.com/?ct=index&ac=get_mobile_local&callback=jsonp1333962541001&mobile=15850781443

参数:

mobile:手机号码

callback:回调函数

返回:JSON

六、有道api接口,代码如下:

接口地址:http://www.youdao.com/smartresult-xml/search.s?type=mobile&q=13892101112

参数说明:

type : 参数手机归属地固定为mobile

q : 手机号码

返回XML格式: 

  1. <?xml version="1.0" encoding="gbk"?>  
  2. <smartresult>  
  3. <product type="mobile">  
  4. <phonenum>13892101112</phonenum>  
  5. <location>陕西 延安</location>  
  6. </product>  
  7. </smartresult> 

或者

http://www.youdao.com/smartresult-xml/search.s?jsFlag=true&type=mobile&q=手机号码

返回JSON格式:

fYodaoCallBack(1, {‘product':'mobile','phonenum':'13892101112′,'location':'陕西 延安'} , ”);

PHP调用淘宝API实例: 

  1. <?php  
  2. $mobile = "15018788111";  //要查询的电话号码  
  3. $content = get_mobile_area($mobile);  
  4. print_r($content);  
  5.  
  6. function get_mobile_area($mobile){  
  7.     $sms = array('province'=>'''supplier'=>'');    //初始化变量  
  8.     //根据淘宝的数据库调用返回值  
  9.     $url = "http://tcc.taobao.com/cc/json/mobile_tel_segment.htm?tel=".$mobile."&t=".time();  
  10.  
  11.     $content = file_get_contents($url);  
  12.     $sms['province'] = substr($content"56""4");  //截取字符串  
  13.     $sms['supplier'] = substr($content"81""4");  
  14.     return $sms;  

其它的API可以自由发挥哦。

Tags: PHP手机号码归属地接口

分享到: