PHP Conference Japan 2024

geoip_region_name_by_code

(PECL geoip >= 1.0.4)

geoip_region_name_by_code返回某个国家和地区代码组合的地区名称

描述

geoip_region_name_by_code(string $country_code, string $region_code): string

geoip_region_name_by_code() 函数将返回对应于国家和地区代码组合的地区名称。

在美国,地区代码对应于每个州的两位字母缩写。在加拿大,地区代码对应于加拿大邮政规定的两位字母省或地区代码。

对于世界其他地区,GeoIP 使用 FIPS 10-4 代码表示地区。您可以查看 » http://www.maxmind.com/app/fips10_4 以获取 FIPS 10-4 代码的详细列表。

如果使用 GeoIP 库版本 1.4.1 或更高版本,则此函数始终可用。数据直接取自 GeoIP 库,而不是来自任何数据库。

参数

country_code

两位字母的国家代码(参见 geoip_country_code_by_name()

region_code

两位字母(或数字)的地区代码(参见 geoip_region_by_name()

返回值

成功时返回地区名称,如果找不到国家和地区代码组合则返回 false

示例

示例 #1 使用美国/加拿大地区代码的 geoip_region_name_by_code() 示例

这将打印国家 CA(加拿大),地区 QC(魁北克)的地区名称。

<?php
$region
= geoip_region_name_by_code('CA', 'QC');
if (
$region) {
echo
'CA/QC 的地区名称是:' . $region;
}
?>

以上示例将输出

Region name for CA/QC is: Quebec

示例 #2 使用 FIPS 代码的 geoip_region_name_by_code() 示例

这将打印国家 JP(日本),地区 01 的地区名称。

<?php
$region
= geoip_region_name_by_code('JP', '01');
if (
$region) {
echo
'JP/01 的地区名称是:' . $region;
}
?>

以上示例将输出

Region name for JP/01 is: Aichi

添加注释

用户贡献注释

此页面没有用户贡献注释。
To Top