Sintaxis
int ip2long ( string $ip_address )
Definición y uso
Solía convertir la dirección ipv4 en un entero largo.
Valores devueltos
Devuelve un entero largo o muestra un mensaje porque la dirección IP no es válida.
Parámetros
No Señor |
Parámetros y descripción |
1 |
ip_address contiene una dirección IP. |
Ejemplo
Prueba el siguiente ejemplo
<?php
$ip = gethostbyname('www.tutorialspoint.com');
$out = "The following URLs are equivalent:
\n";
$out .= 'http://www.tutorialspoint.com/, http://' . $ip . '/,
and http://' . sprintf("%u", ip2long($ip)) . "/
\n";
echo $out;
?>
Esto producirá el siguiente resultado:
The following URLs are equivalent:
http://www.tutorialspoint.com/, http://72.21.91.8/, and http://1209359112/