Class Phalcon\Validation\Validator\Regex

extends abstract class Phalcon\Validation\Validator

implements Phalcon\Validation\ValidatorInterface

Source on GitHub

Allows validate if the value of a field matches a regular expression

  1. <?php
  2. use Phalcon\Validation\Validator\Regex as RegexValidator;
  3. $validator->add(
  4. "created_at",
  5. new RegexValidator(
  6. [
  7. "pattern" => "/^[0-9]{4}[-\/](0[1-9]|1[12])[-\/](0[1-9]|[12][0-9]|3[01])$/",
  8. "message" => "The creation date is invalid",
  9. ]
  10. )
  11. );
  12. $validator->add(
  13. [
  14. "created_at",
  15. "name",
  16. ],
  17. new RegexValidator(
  18. [
  19. "pattern" => [
  20. "created_at" => "/^[0-9]{4}[-\/](0[1-9]|1[12])[-\/](0[1-9]|[12][0-9]|3[01])$/",
  21. "name" => "/^[a-z]$/",
  22. ],
  23. "message" => [
  24. "created_at" => "The creation date is invalid",
  25. "name" => "The name is invalid",
  26. ]
  27. ]
  28. )
  29. );

Methods

public validate (Phalcon\Validation $validation, mixed $field)

Executes the validation

public __construct ([array $options]) inherited from Phalcon\Validation\Validator

Phalcon\Validation\Validator constructor

public isSetOption (mixed $key) inherited from Phalcon\Validation\Validator

Checks if an option has been defined

public hasOption (mixed $key) inherited from Phalcon\Validation\Validator

Checks if an option is defined

public getOption (mixed $key, [mixed $defaultValue]) inherited from Phalcon\Validation\Validator

Returns an option in the validator’s options Returns null if the option hasn’t set

public setOption (mixed $key, mixed $value) inherited from Phalcon\Validation\Validator

Sets an option in the validator