使用免费 IP 地理定位网络服务从 IP 地址获取国家/地区名称
首先感谢大家......
我读到我可以使用免费的 IP 地理定位网络服务从 IP 地址获取国家/地区名称。但是我如何获得对我的网站的响应,实际上这就是我所看到的,在我的网站中需要显示 IP 地址中的国家/地区名称。你能详细告诉我吗...我怎样才能显示该网站的国家/地区名称..
First of all thanks to all ....
I read that i can use the free IP geolocation webservice to get Country name from an Ip address. But how i get the response to my site , Actually this is what i look , In my site there is a need of displaying the country name from Ip address. Can uou please tell in detail... How can i display the country Name from that site ..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
geoip_country_code_by_name
可以为您提供任意 IP 地址或主机名的国家/地区(不仅仅是当前访问者的 IP 地址或主机名,如 apache_note("GEOIP_COUNTRY_NAME") 那样),它使用相同的 MaxMind 数据库。如果您想要完整的国家/地区名称而不是 ISO 代码,还可以使用geoip_country_name_by_name
函数。geoip_country_code_by_name
can give you the country for an arbitrary IP address or hostname (not just the one from the current visitor asapache_note("GEOIP_COUNTRY_NAME")
does), it uses the same MaxMind database. There is also thegeoip_country_name_by_name
function if you want the full country name rather than the ISO code.http://www.maxmind.com/app/php
您需要安装php模块然后使用以下代码获取国家/地区名称:
$country_name = apache_note("GEOIP_COUNTRY_NAME");
http://www.maxmind.com/app/php
You need to install the php module and then use the following code to get the country name:
$country_name = apache_note("GEOIP_COUNTRY_NAME");
已在 Oplim?它免费提供高达 50 万的综合浏览量,您可以设置代码和自定义条件(国家/地区,甚至整个欧盟等地区)。
披露:我是服务开发人员之一。
Have checked this functionality in Oplim? It is free for up to 500k pageviews, and you can set your code and custom condition (country, or even areas such as all the EU).
Disclosure: I am among the service developers.