使用MaxMind或运行本地whois以通过IP获取访问者国家/地区代码

时间:2013-01-02 06:22:16

标签: ip whois visitor maxmind

在以下两种方法之间通过IP获取访问者国家/地区代码的最佳方法是什么:

  1. 使用MaxMind geoip database here

  2. 像这样运行本地的whois和grep这个单词

    $ip = $_SERVER['REMOTE_ADDR']; // Get users IP
    $country = exec("whois $ip  | grep -i country");
    $country = str_replace('country: ', '', $country);
    
  3. 我听说运行本地人只是在linux服务器上工作,这是正确的吗?

0 个答案:

没有答案