geoip_asnum_by_name()是PHP中的内置函数,可帮助我们获取自治系统号(ASN)。该函数将通过以IP地址作为参数来帮助我们获取ASN。
用法:
string geoip_asnum_by_name ( string $hostname )
- $hostname : 它是geoip_asnum_by_name()函数接受的唯一参数。它是函数接受并返回ASN(自治语法号)的IP地址或主机名。
参数:该函数接受上面提到并在下面说明的单个参数:
返回值:成功时返回ASN(自治语法号),失败时返回FALSE。
下面的程序演示了geoip_asnum_by_name()函数。
程序:
<?php
// PHP code to illustrate the
// geoip_asnum_by_name() function
// The function accepts the host 'www.example.com'
$asn = geoip_asnum_by_name('www.example.com');
if ($asn) {
//the function will print the ASN
echo 'The ASN is:'.$asn;
}
?>
输出:
The ASN is: AS15133 EdgeCast Networks, Inc
参考: http://php.net/manual/en/function.geoip-asnum-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_asnum_by_name() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。