ホームページ  >  記事  >  バックエンド開発  >  PHP 携帯電話番号所有権クエリ API インターフェイス

PHP 携帯電話番号所有権クエリ API インターフェイス

伊谢尔伦
伊谢尔伦オリジナル
2016-11-26 16:33:542466ブラウズ

タオバオ

APIアドレス: http://tcc.taobao.com/cc/json/mobile_tel_segment.htm?tel=15850781443
パラメータ:

電話番号: 携帯電話番号

戻り値: JSON

パイパ

APIアドレス:http://virtual.paipai.com/extinfo/getmobileproductinfo?mobile=15850781443&mount=10000&callname=getphonuminfoextcallbackparameters:

mobile:携帯電話番号JSON

Tenpay

APIアドレス: http://life.tenpay.com/cgi-bin/mobile/MobileQueryAttribution.cgi?chgmobile=15850781443

パラメータ:

chgmobile: 携帯電話番号

Return: xml

Baifu Bao

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

Youdao APIインターフェース

インターフェースアドレス: http://www.youdao.com/smartresult-xml/search.s?type=mobile&q=13892101112

パラメータの説明:

タイプ: パラメータ携帯電話の位置固定mobile

q: 携帯電話番号

は XML 形式を返します:

50c36e0009a429482eee117002b829fd

8c8e11061c3752eb188d1a0f2e44cafb

75e55dfa86620ce14cce05c1c3eb3c67

cfa41188a9337b35ad6b19691390e82913892101112594b0af4db3b272a3a11d1b03bef3b87

9d68f4d645dd62cd4e002580b75a8b85陝西省延安eb393cd7f0c41cf1136847ec1779eae4

1da18c4b98da1fc43a8786f07f99713f

9993d2092ce3d27638638e993603a5e2


または

http://www.youdao.com/ Smartre sult -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(&#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;
}

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。