Location detecting techniques for IP addresses

前端 未结 9 1199
甜味超标
甜味超标 2020-11-28 12:22

What are the location detecting techniques for IP addresses?
I know to look at the
$_SERVER[\'HTTP_ACCEPT_LANGUAGE\'] (not accurate but mostly useful to

9条回答
  •  刺人心
    刺人心 (楼主)
    2020-11-28 12:45

    U can use this function

     function ip_info(){
                return $data = json_decode(file_get_contents('http://ip-api.com/json/'),true);
            }
    

    Call the function

    $info = ip_info();
    var_dump($info);
    

提交回复
热议问题