Uses
Uses | Description |
---|---|
wp-includes/Requests/IPv6.php: Requests_IPv6::check_ipv6() | Checks an IPv6 address |
Determines if an IP address is valid.
Handles both IPv4 and IPv6 addresses.
(string) (Required) IP address.
(string|false) The valid IP address, otherwise false.
File: wp-includes/rest-api.php
function rest_is_ip_address( $ip ) { $ipv4_pattern = '/^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/'; if ( ! preg_match( $ipv4_pattern, $ip ) && ! Requests_IPv6::check_ipv6( $ip ) ) { return false; } return $ip; }
Version | Description |
---|---|
4.7.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/rest_is_ip_address