Heim >Backend-Entwicklung >PHP-Tutorial >php手机号码归属地查询

php手机号码归属地查询

PHP中文网
PHP中文网Original
2016-07-29 09:01:281824Durchsuche

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;
}


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn