我如何使用IP地址“ request()-> ip();”获得货币语言环境

时间:2019-05-14 09:30:44

标签: php laravel

我正在使用laravel,我需要最好的软件包才能从IP地址获取信息,我使用了laravel geo和laravel geoip,但每次都返回null,请提出什么建议?

geoip:

$location = geoip()->getLocation(); 

geo:

$ip = request()->ip();
$countryCode = Geo::location()->ipCountry($ip);

1 个答案:

答案 0 :(得分:0)

Laravel Geoip应该是您的理想选择。 Check the github repo from here

您可以使用以下文档开始: Documentation

看看您的代码,就像这样:

$ip = request()->ip(); 
$geoData = geoip($ip);
$country = $geoData['country'];
$currency = $geoData['currency'];