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;
}
?>
(PECL geoip >= 1.1.0)
geoip_asnum_by_name — AS番号(ASN) を取得する
geoip_asnum_by_name() 関数は、 IPアドレスに関連付けられたAS番号(ASN)を返します。
hostname
ホスト名またはIPアドレス
成功時にはAS番号を返します。
アドレスがデータベースに見つからなかった場合は false
を返します。
例1 geoip_asnum_by_name() の例
この例は、www.example.com のAS番号を出力します。
<?php
$asn = geoip_asnum_by_name('www.example.com');
if ($asn) {
echo 'The ASN is: ' . $asn;
}
?>
上の例の出力は以下となります。
The ASN is: AS15133 EdgeCast Networks, Inc
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;
}
?>