当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP geoip_continent_code_by_name()用法及代码示例


geoip_continent_code_by_name()函数是PHP中的内置函数,可帮助生成两个字母的大洲代码(每个大洲都分配了两个字母的代码。例如-AF代表非洲,AS代表亚洲,等等)。该函数将主机名或IP地址作为参数,并生成两个字母的大洲代码。

用法:

string geoip_continent_code_by_name ( string $hostname )
    参数:函数geoip_continent_code_by_name()如上所述接受一个参数,并在下面进行解释:
  • $hostname : 这是上述函数接受的唯一参数。这是函数接受并返回两个字母的洲代码的IP地址或主机名。

返回值:如果成功,它将返回两个字母的洲代码,否则,将返回FALSE。

以下示例程序旨在说明上述函数:

程序:

<?php 
  
// PHP code implementing the 
// geoip_continent_code_by_name() function  
  
// The function accepts the 
// hostname as a parameter 
$continent = geoip_continent_code_by_name('www.example.com'); 
  
if ($continent) { 
      
       //displays the two letter code 
       echo 'This host is located in: '. $continent;  
} 
?>

输出:

This host is located in: NA

参考:http://php.net/manual/en/function.geoip-continent-code-by-name.php



相关用法


注:本文由纯净天空筛选整理自priya_1998大神的英文原创作品 PHP | geoip_continent_code_by_name() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。