php手機號碼歸屬地查詢api接口

伊谢尔伦
發布: 2016-11-26 16:33:54
原創
2509 人瀏覽過

淘寶網

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

tel:手機號碼拍拍

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

參數:

mobile:手機號碼未知數:必須調回


mount

返回: JSON

財付通

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

參數:

chgmobile:37百付寶

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

參數:


phone:手機號碼

)必須回呼

位址:JSON


115

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

callback:回調函數

回傳:JSON

有道api介面

介面位址:http://www.youdao.com/smartresult-xml/search.s?type=mobile&q=138921011112

參數說明:


屬地:?固定為mobile

q : 手機號碼

回頁XML格式:

陝西延安

http://www.youdao.com/smartresult-xml/search.s?jsFlag=true&type =mobile&q=手機號碼

返回JSON格式:

fYodaoCallBack(1, {'product':'mobile','phonenum':'13892101112′,'location':'陝西num':'13892101112′,'location':'陝西笠); :

<?php
$mobile = "15018788111";  //要查询的电话号码
$content = get_mobile_area($mobile);
print_r($content);
function get_mobile_area($mobile){
    $sms = array(&#39;province&#39;=>&#39;&#39;, &#39;supplier&#39;=>&#39;&#39;);    //初始化变量
    //根据淘宝的数据库调用返回值
    $url = "http://tcc.taobao.com/cc/json/mobile_tel_segment.htm?tel=".$mobile."&t=".time();
    $content = file_get_contents($url);
    $sms[&#39;province&#39;] = substr($content, "56", "4");  //截取字符串
    $sms[&#39;supplier&#39;] = substr($content, "81", "4");
    return $sms;
}
登入後複製



相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!