PHP.nl

gethostbynamel

gethostbynamel

Get a list of IPv4 addresses corresponding to a given Internet host name

 **gethostbynamel** string $hostname

Returns a list of IPv4 addresses to which the Internet host specified by resolves. hostname

hostnameThe host name.

Returns an array of IPv4 addresses or false if could not be resolved. hostname

Voorbeeld: example

<?php
$hosts = gethostbynamel('www.example.com');
print_r($hosts);
?>
Array
(
    [0] => 192.0.34.166
)

gethostbyname``gethostbyaddr``checkdnsrr``getmxrr``named(8)