array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'en', ), 'this' => array ( 0 => 'function.gethostbyaddr.php', 1 => 'gethostbyaddr', 2 => 'Get the Internet host name corresponding to a given IP address', ), 'up' => array ( 0 => 'ref.network.php', 1 => 'Network Functions', ), 'prev' => array ( 0 => 'function.fsockopen.php', 1 => 'fsockopen', ), 'next' => array ( 0 => 'function.gethostbyname.php', 1 => 'gethostbyname', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/network/functions/gethostbyaddr.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

gethostbyaddr

(PHP 4, PHP 5, PHP 7, PHP 8)

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

Description

gethostbyaddr(string $ip): string|false

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

Parameters

ip

The host IP address.

Return Values

Returns the host name on success, the unmodified ip on failure, or false on malformed input.

Examples

Example #1 A simple gethostbyaddr() example

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

echo
$hostname;
?>

See Also