geoip_asnum_by_name

(PECL geoip >= 1.1.0)

geoip_asnum_by_name获取自治系统号(ASN)

说明

geoip_asnum_by_name ( string $hostname ) : string

geoip_asnum_by_name() 函数将会返回和 IP 地址相关联的自治系统号(ASN)。

参数

hostname

主机的 IP 地址。

返回值

如果成功将会返回自治系统号,如果在数据库中未找到相关信息则返回 FALSE

范例

Example #1 geoip_asnum_by_name()函数的范例:

以下代码将会输出 www.example.com 域名的 ASN。

<?php
$asn 
geoip_asnum_by_name('www.example.com');

if (
$asn) {
    echo 
'The ASN is: ' $asn;
}
?>

以上例程会输出:

The ASN is: AS15133 EdgeCast Networks, Inc

User Contributed Notes

edwin at theroyalstudent dot com 11-Nov-2014 03:22
The code example as stated has a missing '.', causing a syntax error if it is pasted and executed without being checked.

Correct Code:

<?php
$asn
= geoip_asnum_by_name('www.example.com');

if (
$asn) {
    echo
'The ASN is: ' . $asn;
}
?>