PHP mobile phone number ownership query api interface

伊谢尔伦
Release: 2016-11-26 16:33:54
Original
2456 people have browsed it

Taobao

API address: http://tcc.taobao.com/cc/json/mobile_tel_segment.htm?tel=15850781443
Parameters:

tel: mobile phone number

Return: JSON

Paipa

API Address: http://virtual.paipai.com/extinfo/GetMobileProductInfo?mobile=15850781443&amount=10000&callname=getPhoneNumInfoExtCallback
Parameters:

mobile: mobile phone number

callname: callback function

amount: unknown (required)

Return: JSON

Tenpay

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

chgmobile: mobile phone number

Return: xml

Baifu Bao

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

phone: mobile phone number

callback: callback function

cmd: unknown (required)

Return: JSON

115

API address: http://cz.115.com/?ct=index&ac=get_mobile_local&callback=jsonp1333962541001&mobile=15850781443
Parameters:

mobile: mobile phone number

callback: callback function

Return: JSON

Youdao api interface

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

Parameter description:

type: Parameter mobile phone location Fixed to mobile

q: Mobile phone number

returns XML format:




13892101112
Shaanxi Yan'an

or

http://www.youdao.com/smartre sult -xml/search.s?jsFlag=true&type=mobile&q=Mobile phone number

Return JSON format:

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

Example:

<?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;
}
Copy after login


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!