我正在使用laravel,我需要最好的软件包才能从IP地址获取信息,我使用了laravel geo和laravel geoip,但每次都返回null,请提出什么建议?
geoip:
$location = geoip()->getLocation();
geo:
$ip = request()->ip();
$countryCode = Geo::location()->ipCountry($ip);
答案 0 :(得分:0)
Laravel Geoip应该是您的理想选择。 Check the github repo from here
您可以使用以下文档开始: Documentation
看看您的代码,就像这样:
$ip = request()->ip();
$geoData = geoip($ip);
$country = $geoData['country'];
$currency = $geoData['currency'];