[ Index ]

PHP Cross Reference of WordPress Trunk (Updated Daily)

Search

title

Body

[close]

/wp-includes/Requests/src/ -> Ipv6.php (summary)

Class to validate and to work with IPv6 addresses

File Size: 203 lines (6 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 4 functions

  uncompress()
  compress()
  split_v6_v4()
  check_ipv6()

Functions
Functions that are not part of a class:

uncompress($ip)   X-Ref
Uncompresses an IPv6 address

RFC 4291 allows you to compress consecutive 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

author: Alexander Merz <alexander.merz@web.de>
author: elfrink at introweb dot nl
author: Josh Peck <jmp at joshpeck dot org>
param: string|Stringable $ip An IPv6 address
return: string The uncompressed IPv6 address

compress($ip)   X-Ref
Compresses an IPv6 address

RFC 4291 allows you to compress consecutive 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

param: string $ip An IPv6 address
return: string The compressed IPv6 address

split_v6_v4($ip)   X-Ref
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

param: string $ip An IPv6 address
return: string[] [0] contains the IPv6 represented part, and [1] the IPv4 represented part

check_ipv6($ip)   X-Ref
Checks an IPv6 address

Checks if the given IP is a valid IPv6 address

param: string $ip An IPv6 address
return: bool true if $ip is a valid IPv6 address



Generated : Sat Apr 20 08:20:01 2024 Cross-referenced by PHPXref