extends abstract class Phalcon\Validation\Validator
implements Phalcon\Validation\ValidatorInterface
Allows validate if the value of a field matches a regular expression
use Phalcon\Validation\Validator\Regex as RegexValidator; $validator->add( "created_at", new RegexValidator( [ "pattern" => "/^[0-9]{4}[-\/](0[1-9]|1[12])[-\/](0[1-9]|[12][0-9]|3[01])$/", "message" => "The creation date is invalid", ] ) ); $validator->add( [ "created_at", "name", ], new RegexValidator( [ "pattern" => [ "created_at" => "/^[0-9]{4}[-\/](0[1-9]|1[12])[-\/](0[1-9]|[12][0-9]|3[01])$/", "name" => "/^[a-z]$/", ], "message" => [ "created_at" => "The creation date is invalid", "name" => "The name is invalid", ] ] ) );
Executes the validation
Phalcon\Validation\Validator constructor
Checks if an option has been defined
Checks if an option is defined
Returns an option in the validator’s options Returns null if the option hasn’t set
Sets an option in the validator
© 2011–2017 Phalcon Framework Team
Licensed under the Creative Commons Attribution License 3.0.
https://docs.phalconphp.com/en/latest/api/Phalcon_Validation_Validator_Regex.html