PHP 免费获取手机号码归属地

一、淘宝网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格式:

<?xml version="1.0" encoding="gbk"?>
<smartresult>
<product type="mobile"> <phonenum>13892101112</phonenum> <location>陕西 延安</location> </product> </smartresult>

或者 
http://www.youdao.com/smartresult-xml/search.s?jsFlag=true&type=mobile&q=手机号码 
返回JSON格式: 
fYodaoCallBack(1, {‘product’:’mobile’,’phonenum’:’13892101112′,’location’:’陕西 延安’} , ”);

PHP调用淘宝API实例:

<?php
$mobile = "150********";  //要查询的电话号码 $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; }
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值