Вся предоставленная на этом сервере информация собрана нами из разных источников. Если Вам кажется, что публикация каких-то документов нарушает чьи-либо авторские права, сообщите нам об этом.
ip2long --
Converts a string containing an (IPv4) Internet Protocol dotted address
into a proper address.
Description
int ip2long (string ip_address)
The function ip2long() generates an IPv4 Internet
network address from its Internet standard format (dotted string)
representation.
Example 1. Ip2long() Example
<?
$ip = gethostbyname("www.php.net");
$out = "The following URLs are equivalent:<br>\n";
$out .= "http://www.php.net/, http://".$ip."/, and http://".ip2long($ip)."/<br>\n";
echo $out;
?>