geoip_country_code_by_name()是PHP中的内置函数,可帮助生成两个字母的国家代码(每个国家都分配了两个字母的国家代码。例如:US表示美国)。该函数将主机名或IP地址作为参数,并生成两个字母的国家/地区代码。
用法:
string geoip_country_code_by_name ( string $hostname )
- $hostname : 这是上述函数接受的唯一参数。这是函数接受并返回两个字母的国家/地区代码的IP地址或主机名。
参数:函数geoip_country_code_by_name()接受如上所述的单个参数,并在下面进行说明。
返回值:成功时返回两个字母的ISO国家/地区代码,否则返回FALSE。
以下示例程序旨在说明geoip_country_code_by_name()函数:
程序1:
<?php
// PHP code implementing the
// geoip_country_code_by_name() function
// The function takes the hostname
// 'www.example.com' as an argument
$country = geoip_country_code_by_name('www.example.com');
if ($country) {
// displays the two letter ISO country code
echo 'This host is located in: ' . $country;
}
?>
输出:
This host is located in: US
程序2:
<?php
// PHP code implementing the
// geoip_country_code_by_name() function
// The function takes the hostname
// 'www.example.com' as an argument
$country = geoip_country_code_by_name('www.geeksforgeeks.org');
if ($country) {
// displays the two letter ISO country code
echo 'This host is located in: ' . $country;
}
?>
输出:
This host is located in: US
参考:http://php.net/manual/en/function.geoip-country-code-by-name.php
相关用法
- p5.js sq()用法及代码示例
- d3.js d3.map.has()用法及代码示例
- PHP next()用法及代码示例
- p5.js day()用法及代码示例
- p5.js pow()用法及代码示例
- CSS var()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- PHP pow( )用法及代码示例
- PHP pi( )用法及代码示例
- PHP Ds\Map get()用法及代码示例
- PHP Ds\Map put()用法及代码示例
- p5.js str()用法及代码示例
注:本文由纯净天空筛选整理自priya_1998大神的英文原创作品 PHP | geoip_country_code_by_name() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。