wpseek.com
A WordPress-centric search engine for devs and theme authors



rest_is_ip_address › WordPress Function

Since4.7.0
Deprecatedn/a
rest_is_ip_address ( $ip )
Parameters:
  • (string) $ip IP address.
    Required: Yes
Returns:
  • (string|false) The valid IP address, otherwise false.
Defined at:
Codex:

Determines if an IP address is valid.

Handles both IPv4 and IPv6 addresses.


Source

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 ) && ! WpOrg\Requests\Ipv6::check_ipv6( $ip ) ) {
		return false;
	}

	return $ip;
}