Class Phalcon\Validation\Validator\Between

extends abstract class Phalcon\Validation\Validator

implements Phalcon\Validation\ValidatorInterface

Source on GitHub

Validates that a value is between an inclusive range of two values. For a value x, the test is passed if minimum<=x<=maximum.

  1. <?php
  2. use Phalcon\Validation\Validator\Between;
  3. $validator->add(
  4. "price",
  5. new Between(
  6. [
  7. "minimum" => 0,
  8. "maximum" => 100,
  9. "message" => "The price must be between 0 and 100",
  10. ]
  11. )
  12. );
  13. $validator->add(
  14. [
  15. "price",
  16. "amount",
  17. ],
  18. new Between(
  19. [
  20. "minimum" => [
  21. "price" => 0,
  22. "amount" => 0,
  23. ],
  24. "maximum" => [
  25. "price" => 100,
  26. "amount" => 50,
  27. ],
  28. "message" => [
  29. "price" => "The price must be between 0 and 100",
  30. "amount" => "The amount must be between 0 and 50",
  31. ],
  32. ]
  33. )
  34. );

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