array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'uk', ), 'this' => array ( 0 => 'function.gethostbyname.php', 1 => 'gethostbyname', 2 => 'Get the IPv4 address corresponding to a given Internet host name', ), 'up' => array ( 0 => 'ref.network.php', 1 => 'Функції для мережі', ), 'prev' => array ( 0 => 'function.gethostbyaddr.php', 1 => 'gethostbyaddr', ), 'next' => array ( 0 => 'function.gethostbynamel.php', 1 => 'gethostbynamel', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/network/functions/gethostbyname.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>

gethostbyname

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

gethostbyname Get the IPv4 address corresponding to a given Internet host name

Опис

gethostbyname(string $hostname): string

Returns the IPv4 address of the Internet host specified by hostname.

Параметри

hostname

The host name.

Значення, що повертаються

Returns the IPv4 address or a string containing the unmodified hostname on failure.

Приклади

Приклад #1 A simple gethostbyname() example

<?php
$ip
= gethostbyname('www.example.com');

echo
$ip;
?>

Прогляньте також