respect-validation/docs/rules/Between.md
Henrique Moody 52614d600d
Organize documentation for "Read the Docs"
The current documentation is hosted via GitHub pages rendered by
"Couscous". Every time we need a new version of the documentation
published we need to manually execute the "couscous".

This commit reorganize the documentation to be published to
"Read the Docs" because it will also allow us to have documentations per
version of the library most importantly provider a search field for the
documentation.

The documentation will be then published on:
https://respect-validation.readthedocs.io/

Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
2018-08-23 01:59:39 +02:00

936 B

Between

  • v::between(mixed $start, mixed $end)
  • v::between(mixed $start, mixed $end, boolean $inclusive = true)

Validates ranges. Most simple example:

v::intVal()->between(10, 20)->validate(15); // true

The type as the first validator in a chain is a good practice, since between accepts many types:

v::stringType()->between('a', 'f')->validate('c'); // true

Also very powerful with dates:

v::date()->between('2009-01-01', '2013-01-01')->validate('2010-01-01'); // true

Date ranges accept strtotime values:

v::date()->between('yesterday', 'tomorrow')->validate('now'); // true

A third parameter may be passed to validate the passed values inclusive:

v::date()->between(10, 20, true)->validate(20); // true

Message template for this validator includes {{minValue}} and {{maxValue}}.


See also: