gethostbyaddr
(PHP 3, PHP 4, PHP 5)
gethostbyaddr --
指定したIPアドレスに対応するインターネットホスト名を取得する
説明
string
gethostbyaddr ( string ip_address )
ip_address
で指定したインターネットホストの
ホスト名を返します。失敗した場合は、そのままの形の
ip_address
を文字列で返します。
例 1. 単純な gethostbyaddr() の例
<?php $hostname = gethostbyaddr($_SERVER['REMOTE_ADDR']);
echo $hostname; ?>
|
|