Maison > Article > développement back-end > php手机号码归属地查询api接口
淘宝网
API地址: http://tcc.taobao.com/cc/json/mobile_tel_segment.htm?tel=15850781443
参数:
tel:手机号码
返回:JSON
拍拍
API地址: http://virtual.paipai.com/extinfo/GetMobileProductInfo?mobile=15850781443&amount=10000&callname=getPhoneNumInfoExtCallback
参数:
mobile:手机号码
callname:回调函数
amount:未知(必须)
返回:JSON
财付通
API地址: http://life.tenpay.com/cgi-bin/mobile/MobileQueryAttribution.cgi?chgmobile=15850781443
参数:
chgmobile:手机号码
返回:xml
百付宝
API地址: https://www.baifubao.com/callback?cmd=1059&callback=phone&phone=15850781443
参数:
phone:手机号码
callback:回调函数
cmd:未知(必须)
返回:JSON
115
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格式:
8627e4b74330e8e17b7ca060c9881875
8c8e11061c3752eb188d1a0f2e44cafb
c6519b794f8622f8a118d0f472d71526
cfa41188a9337b35ad6b19691390e82913892101112594b0af4db3b272a3a11d1b03bef3b87
9d68f4d645dd62cd4e002580b75a8b85陕西 延安eb393cd7f0c41cf1136847ec1779eae4
1da18c4b98da1fc43a8786f07f99713f
9993d2092ce3d27638638e993603a5e2
或者
http://www.youdao.com/smartresult-xml/search.s?jsFlag=true&type=mobile&q=手机号码
返回JSON格式:
fYodaoCallBack(1, {‘product’:'mobile’,'phonenum’:’13892101112′,’location’:'陕西 延安’} , ”);
举例:
<?php $mobile = "15018788111"; //要查询的电话号码 $content = get_mobile_area($mobile); print_r($content); function get_mobile_area($mobile){ $sms = array('province'=>'', 'supplier'=>''); //初始化变量 //根据淘宝的数据库调用返回值 $url = "http://tcc.taobao.com/cc/json/mobile_tel_segment.htm?tel=".$mobile."&t=".time(); $content = file_get_contents($url); $sms['province'] = substr($content, "56", "4"); //截取字符串 $sms['supplier'] = substr($content, "81", "4"); return $sms; }