當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。