Class Phalcon\Validation\Validator\StringLength

extends abstract class Phalcon\Validation\Validator

implements Phalcon\Validation\ValidatorInterface

Source on GitHub

Validates that a string has the specified maximum and minimum constraints The test is passed if for a string’s length L, min<=L<=max, i.e. L must be at least min, and at most max.

  1. <?php
  2. use Phalcon\Validation\Validator\StringLength as StringLength;
  3. $validation->add(
  4. "name_last",
  5. new StringLength(
  6. [
  7. "max" => 50,
  8. "min" => 2,
  9. "messageMaximum" => "We don't like really long names",
  10. "messageMinimum" => "We want more than just their initials",
  11. ]
  12. )
  13. );
  14. $validation->add(
  15. [
  16. "name_last",
  17. "name_first",
  18. ],
  19. new StringLength(
  20. [
  21. "max" => [
  22. "name_last" => 50,
  23. "name_first" => 40,
  24. ],
  25. "min" => [
  26. "name_last" => 2,
  27. "name_first" => 4,
  28. ],
  29. "messageMaximum" => [
  30. "name_last" => "We don't like really long last names",
  31. "name_first" => "We don't like really long first names",
  32. ],
  33. "messageMinimum" => [
  34. "name_last" => "We don't like too short last names",
  35. "name_first" => "We don't like too short first names",
  36. ]
  37. ]
  38. )
  39. );

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