Joomla CMS
3.10.11 (avec JPlatform 13.1 inclus)
Documentation des API du CMS Joomla en version 3.10.11 et du framework Joomla Platform intégré
|
Fonctions membres publiques statiques | |
static | uncompress ($ip) |
static | compress ($ip) |
static | check_ipv6 ($ip) |
static | checkIPv6 ($ip) |
Fonctions membres privées statiques | |
static | split_v6_v4 ($ip) |
|
static |
Checks an IPv6 address
Checks if the given IP is a valid IPv6 address
string | $ip | An IPv6 address |
Références $value.
Référencé par SimplePie_IRI\set_host().
|
static |
Checks if the given IP is a valid IPv6 address
string | $ip | An IPv6 address |
|
static |
Compresses an IPv6 address
RFC 4291 allows you to compress concecutive zero pieces in an address to '::'. This method expects a valid IPv6 address and compresses consecutive zero pieces to '::'.
Example: FF01:0:0:0:0:0:0:101 -> FF01::101 0:0:0:0:0:0:0:1 -> ::1
string | $ip | An IPv6 address |
Références null.
Référencé par SimplePie_IRI\set_host().
|
staticprivate |
Splits an IPv6 address into the IPv6 and IPv4 representation parts
RFC 4291 allows you to represent the last two parts of an IPv6 address using the standard IPv4 representation
Example: 0:0:0:0:0:0:13.1.68.3 0:0:0:0:0:FFFF:129.144.52.38
string | $ip | An IPv6 address |
|
static |
Uncompresses an IPv6 address
RFC 4291 allows you to compress concecutive zero pieces in an address to '::'. This method expects a valid IPv6 address and expands the '::' to the required number of zero pieces.
Example: FF01::101 -> FF01:0:0:0:0:0:0:101 ::1 -> 0:0:0:0:0:0:0:1
string | $ip | An IPv6 address |