Class Phalcon\Validation\Validator\ExclusionIn

extends abstract class Phalcon\Validation\Validator

implements Phalcon\Validation\ValidatorInterface

Source on GitHub

Check if a value is not included into a list of values

  1. <?php
  2. use Phalcon\Validation\Validator\ExclusionIn;
  3. $validator->add(
  4. "status",
  5. new ExclusionIn(
  6. [
  7. "message" => "The status must not be A or B",
  8. "domain" => [
  9. "A",
  10. "B",
  11. ],
  12. ]
  13. )
  14. );
  15. $validator->add(
  16. [
  17. "status",
  18. "type",
  19. ],
  20. new ExclusionIn(
  21. [
  22. "message" => [
  23. "status" => "The status must not be A or B",
  24. "type" => "The type must not be 1 or "'
  25. ],
  26. "domain" => [
  27. "status" => [
  28. "A",
  29. "B",
  30. ],
  31. "type" => [1, 2],
  32. ],
  33. ]
  34. )
  35. );

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