update : 2015.11.03
php.shukuma.com

검색:
 
 
Get the Internet host name corresponding to a given IP address

gethostbyaddr

(PHP 4, PHP 5)

gethostbyaddr Get the Internet host name corresponding to a given IP address

설명

string gethostbyaddr ( string $ip_address )

Returns the host name of the Internet host specified by ip_address.

인수

ip_address

The host IP address.

반환값

Returns the host name on success, the unmodified ip_address on failure, or FALSE on malformed input.

예제

Example #1 A simple gethostbyaddr() example

<?php
$hostname 
gethostbyaddr($_SERVER['REMOTE_ADDR']);

echo 
$hostname;
?>

참고

  • gethostbyname() - Get the IPv4 address corresponding to a given Internet host name
  • gethostbynamel() - Get a list of IPv4 addresses corresponding to a given Internet host name