wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



rest_validate_json_schema_pattern › WordPress Function

Seit5.6.0
Veraltetn/v
rest_validate_json_schema_pattern ( $pattern, $value )
Parameter: (2)
  • (string) $pattern The pattern to match against.
    Erforderlich: Ja
  • (string) $value The value to check.
    Erforderlich: Ja
Gibt zurück:
  • (bool) True if the pattern matches the given value, false otherwise.
Definiert in:
Codex:

Validates if the JSON Schema pattern matches a value.



Quellcode

function rest_validate_json_schema_pattern( $pattern, $value ) {
	$escaped_pattern = str_replace( '#', '\\#', $pattern );

	return 1 === preg_match( '#' . $escaped_pattern . '#u', $value );
}