IP地址归属地,支持IPv6地址(离线数据库,定期更新)

为什么建立这个库

政府在大力推进IPv6建设,作者响应国家号召,整合网络免费数据库,制作成离线版供大家使用 国家公文链接:关于开展2019年IPv6网络就绪专项行动的通知

链接

Github Packagist Blog

使用方法

  1. composer require ritaswc/zx-ip-address
  1. $result = \Ritaswc\ZxIPAddress\IPv4Tool::query('114.114.114.114');
  2. /*
  3. $result = [
  4. "start" => "114.114.114.114"
  5. "end" => "114.114.114.114"
  6. "addr" => array:2 [
  7. 0 => "江苏省南京市"
  8. 1 => "南京信风网络科技有限公司GreatbitDNS服务器"
  9. ]
  10. "disp" => "江苏省南京市 南京信风网络科技有限公司GreatbitDNS服务器"
  11. ]
  12. */
  13. $result = \Ritaswc\ZxIPAddress\IPv6Tool::query('240e:e9:8819:0:3::3f9');
  14. /*
  15. $result = [
  16. "start" => "240e:e9:8800::"
  17. "end" => "240e:e9:8fff:ffff::"
  18. "addr" => array:2 [
  19. 0 => "中国江苏省苏州市"
  20. 1 => "中国电信IDC"
  21. ]
  22. "disp" => "中国江苏省苏州市 中国电信IDC"
  23. ]
  24. */