标签: ip whois visitor maxmind
在以下两种方法之间通过IP获取访问者国家/地区代码的最佳方法是什么:
使用MaxMind geoip database here。
像这样运行本地的whois和grep这个单词
$ip = $_SERVER['REMOTE_ADDR']; // Get users IP $country = exec("whois $ip | grep -i country"); $country = str_replace('country: ', '', $country);
我听说运行本地人只是在linux服务器上工作,这是正确的吗?