码迷,mamicode.com
首页 > 其他好文 > 详细

号码归属地

时间:2019-11-25 15:11:48      阅读:73      评论:0      收藏:0      [点我收藏+]

标签:@param   data   号码   result   one   cat   code   public   stat   

/**
 * 获取手机归属地
 * @param $telephone
 * @return bool
 */
public static function getPhoneLocation($telephone) {
    $urlBt = 'http://tool.bitefu.net/shouji';
    $dataBt['mobile'] = $telephone;
    $urlJh = 'http://apis.juhe.cn/mobile/get';
    $dataJh['phone'] = $telephone;
    $dataJh['key'] = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';
    $dataJh['dtype'] = '';
    $return_data = json_decode(Http::newDoGet($urlBt,$dataBt,3),true);
    if ((string)$return_data['status'] === '1') {
        $out['province'] = $return_data['province'];
        $out['city'] = $return_data['city'];
        $out['code'] = $return_data['citycode'];
        return $out;
    } else {
        $return_data = json_decode(Http::newDoGet($urlJh,$dataJh,3),true);
        if ((string)$return_data['resultcode'] === '200') {
            $out['province'] = $return_data['result']['province'];
            $out['city'] = $return_data['result']['city'];
            $out['code'] = $return_data['result']['areacode'];
            return $out;
        }
        return false;
    }
}

号码归属地

标签:@param   data   号码   result   one   cat   code   public   stat   

原文地址:https://www.cnblogs.com/jiqing9006/p/11927501.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!