inet_pton

(no version information, might be only in CVS)

inet_pton --  Convertit une adresse IP lisible en sa représentation in_addr

Description

string inet_pton ( string address )

inet_pton() convertit une adresse IPv4 ou IPv6 (si PHP a été compilé avec le support IPv6) humainement lisible en une structure binaire approriée de famille d'adresses 32bit ou 128bit.

Exemple 1. Exemple avec inet_pton()

<?php
$in_addr
= inet_pton('127.0.0.1');

$in6_addr = inet_pton('::1');

?>

Voir aussi ip2long(), inet_ntop() et long2ip().