欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php手机号码归属地查询

程序员文章站 2022-05-24 14:54:32
...
PHP获取手机号码归属地
用户Leaps/httpClient
可直接用 file_get_contents代替
该API接口自 2011年 SAE平台上线稳定运行至今,增加了17号段的支持,欢迎各种采集注限制 并发10
function getMobileInfo($mobile)
    {
        $http = new HttpClient ();
        $response = $http->get ( 'http://appyun.sinaapp.com/index.php?app=mobile&controller=index&action=api&outfmt=json&mobile='.$mobile );
        if ($response->getHttpCode () == '200') {
            $result = json_decode($response->getBody(),true);
            return $result;
        }
        return false;
}