- PHP 手册
- 函数参考
- 其它基本扩展
- GeoIP
- GeoIP 函数
geoip_country_code_by_name
(PECL geoip >= 0.2.0)
geoip_country_code_by_name — 获取国家代码
说明
geoip_country_code_by_name(string$hostname
): string
geoip_country_code_by_name() 函数将会返回主机或者IP地址所在的国家代码。
参数
-
hostname
-
定位的主机名或者IP地址。
返回值
成功,返回 ISO 定义的国家代码,如果在数据库中未找到相关信息则返回 false
。
范例
示例 #1 geoip_country_code_by_name() 函数的范例:
以下代码将会打印 example.com 主机的定位信息。
<?php
$country = geoip_country_code_by_name('www.example.com');
if ($country) {
echo 'This host is located in: ' . $country;
}
?>
以上例程会输出:
This host is located in: US
注释
警告请点击 » http://www.maxmind.com/en/iso3166 来查看所有可能的返回值列表,包括特殊代码。
参见
- geoip_country_code3_by_name() - 获取三个字母组成的国家简称
- geoip_country_name_by_name() - 获取国家的全称
User Contributed Notes 1 note
up down 2 Ameen Oluajayi ¶3 years ago
The doc example gets the country of the website.
However, to get the country of your website's "visitor/user",
use the "user's" IP address as parameter:
<?php
$country = geoip_country_code_by_name($_SERVER['REMOTE_ADDR']);
?>
add a note
官方地址:https://www.php.net/manual/en/function.geoip-country-code-by-name.php