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


PHP geoip_country_code_by_name()用法及代碼示例


geoip_country_code_by_name()是PHP中的內置函數,可幫助生成兩個字母的國家代碼(每個國家都分配了兩個字母的國家代碼。例如:US表示美國)。該函數將主機名或IP地址作為參數,並生成兩個字母的國家/地區代碼。

用法:

string geoip_country_code_by_name ( string $hostname )

    參數:函數geoip_country_code_by_name()接受如上所述的單個參數,並在下麵進行說明。


  • $hostname : 這是上述函數接受的唯一參數。這是函數接受並返回兩個字母的國家/地區代碼的IP地址或主機名。

返回值:成功時返回兩個字母的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



相關用法


注:本文由純淨天空篩選整理自priya_1998大神的英文原創作品 PHP | geoip_country_code_by_name() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。