php 手机号码 查询信息

<?php
header('Content-type:text/html;charset=utf-8');
$apiurl = 'http://apis.juhe.cn/mobile/get';
$params = array(
  'key' => 'b4b88a8ffc09e2fd3f24251ee19fa168', //您申请的手机号码归属地查询接口的appkey
  'phone' => '18764315706' //要查询的手机号码
);
 
$paramsString = http_build_query($params);
$content = @file_get_contents($apiurl.'?'.$paramsString);
$result = json_decode($content,true);

if($result['error_code'] == '0'){
    /*
    "province":"浙江",
    "city":"杭州",
    "areacode":"0571",
    "zip":"310000",
    "company":"中国移动",
    "card":"移动动感地带卡"
    */
    echo "省份:".$result['result']['province']."\r\n";
    echo "城市:".$result['result']['city']."\r\n";
    echo "区号:".$result['result']['areacode']."\r\n";
    echo "邮编:".$result['result']['zip']."\r\n";
    echo "运营商:".$result['result']['company']."\r\n";
    echo "类型:".$result['result']['card']."\r\n";
}else{
    echo $result['reason']."(".$result['error_code'].")";
}

 

posted on 2017-08-29 11:10  奔跑的葛根  阅读(212)  评论(0编辑  收藏  举报

导航