dongwh1992 2015-12-09 12:41
浏览 12
已采纳

从IP地址获取位置(用于wordpress)[关闭]

WORDPRESS I want to retrieve information like the city, state, and country of a visitor from their IP address In my task the user open the my website it will show in that city product only (for eg bangalore user open the web site it will show bangalore product only based on ip address) i tried lot of plugin give some suggestion

  • 写回答

2条回答 默认 最新

  • duankanjian4642 2015-12-09 12:53
    关注

    I have tried this code and i get city,state,latitude and longitude information using below code.

    <?php function ip_details($IPaddress) 
          {
            $json       = file_get_contents("http://ipinfo.io/{$IPaddress}");
            $details    = json_decode($json);
            return $details;
          }
          $IPaddress  =   $_SERVER['REMOTE_ADDR'];
    
          $details    =   ip_details("49.248.240.116");
    
         print_r($details);
    
    ?>
    

    output is:

    stdClass Object ( [ip] => 49.248.240.116 [hostname] => No Hostname [city] => Mumbai [region] => Maharashtra [country] => IN [loc] => 18.9750,72.8258 [org] => AS55441 D 26/2 TTC INDUSTRIAL AREA MIDC SANPADA )
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥100 iOS开发关于快捷指令截屏后如何将截屏(或从截屏中提取出的文本)回传给本应用并打开指定页面
  • ¥15 unity连接Sqlserver
  • ¥15 图中这种约束条件lingo该怎么表示出来
  • ¥15 VSCode里的Prettier如何实现等式赋值后的对齐效果?
  • ¥15 流式socket文件传输答疑
  • ¥20 keepalive配置业务服务双机单活的方法。业务服务一定是要双机单活的方式
  • ¥50 关于多次提交POST数据后,无法获取到POST数据参数的问题
  • ¥15 win10,这种情况怎么办
  • ¥15 如何在配置使用Prettier的VSCode中通过Better Align插件来对齐等式?(相关搜索:格式化)
  • ¥100 在连接内网VPN时,如何同时保持互联网连接