Skip to main content
Drupal API
Menu
User account menu
Log in
Breadcrumb
Drupal Core 11.1.x
FormatConstraint.php
function FormatConstraint::validateRegex
1 call to
FormatConstraint::validateRegex()
FormatConstraint::check
in vendor/
justinrainbow/
json-schema/
src/
JsonSchema/
Constraints/
FormatConstraint.php
invokes the validation of an element
File
vendor/
justinrainbow/
json-schema/
src/
JsonSchema/
Constraints/
FormatConstraint.php
, line 179
Class
FormatConstraint
Validates against the "format" property
Namespace
JsonSchema\Constraints
Code
protected
function
validateRegex
(
$regex
) {
return
false
!== @
preg_match
(
'/'
.
$regex
.
'/u'
,
''
); }
RSS feed