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