Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 18788 программистов и 1631 робот. Сейчас ищут 2149 программистов ...
Net_IPv6::splitV64()
Вернуться к: Net_IPv6
Net_IPv6::splitV64()
Net_IPv6::splitV64() – splits an IPv6 address in it IPv6 and IPv4 part
Synopsis
require_once 'Net/IPv6.php';
array Net_IPv6::splitV64 ( string $ip )
Splits an IPv6 address into the IPv6 and a possible IPv4-formated part. RFC 2373 allows you to note the last two parts of an IPv6 address in the IPv4 address format:
0:0:0:0:0:0:13.1.68.3 0:0:0:0:0:FFFF:129.144.52.38
Parameter
-
string $ip - the IP address to split
Return value
array - key [0] contains the IPv6 part, key [1] the IPv4 formated part
Note
This function can be called statically.
Вернуться к: Net_IPv6