Heim  >  Artikel  >  Backend-Entwicklung  >  PHP-API-Schnittstelle zur Abfrage des Besitzes einer Mobiltelefonnummer

PHP-API-Schnittstelle zur Abfrage des Besitzes einer Mobiltelefonnummer

伊谢尔伦
伊谢尔伦Original
2016-11-26 16:33:542465Durchsuche

Taobao

API-Adresse: http://tcc.taobao.com/cc/json/mobile_tel_segment.htm?tel=15850781443
Parameter:

tel: Mobiltelefonnummer

Rückgabe: JSON

Paipai

API-Adresse: http://virtual.paipai.com/extinfo/GetMobileProductInfo?mobile=15850781443&amount=10000&callname=getPhoneNumInfoExtCallback
Parameter :

Mobiltelefon: Handynummer

Anrufname: Rückruffunktion

Betrag: unbekannt (erforderlich)

Rückgabe: JSON

Financial PayTong

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

chgmobile: Mobiltelefonnummer

Rückgabe: xml

Baifubao

API-Adresse: https://www.baifubao.com/callback?cmd=1059&callback=phone&phone=15850781443
Parameter:

Telefon: Mobiltelefonnummer

Rückruf: Rückruffunktion

cmd: unbekannt (erforderlich)

Rückgabe: JSON

115

API-Adresse: http://cz.115.com/?ct=index&ac=get_mobile_local&callback=jsonp1333962541001&mobile=15850781443
Parameter:

Mobiltelefon: Mobiltelefonnummer

Rückruf: Rückruf Funktion

gibt zurück: JSON

Youdao API-Schnittstelle

Schnittstellenadresse: http://www.youdao.com/smartresult-xml/search.s?type= mobile&q= 13892101112

Parameterbeschreibung:

Typ: Der Parameter Mobiltelefonstandort ist als mobil festgelegt

q: Mobiltelefonnummer

XML-Format zurückgeben:

1e740373f97c68eff009df4aa14de173
8c8e11061c3752eb188d1a0f2e44cafb
75e55dfa86620ce14cce05c1c3eb3c67
cfa41188a9337b35ad6b19691390e8291389210111216c47617f99c150b2a5fb1183ea3768d
9d68f4d645dd62cd4e002580b75a8b85Shaanxi Yan'aneb393cd7f0c41cf1136847ec1779eae4
1da18c4b98da1fc43a8786f07f99713f
9993d2092ce3d27638638e993603a5e2

oder

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

JSON-Format zurückgeben:

fYodaoCallBack(1, {'product':' mobile', 'phonenum':'13892101112′,'location':'Shaanxi Yan'an'} , ”);

Beispiel:

<?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;
}


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn