respect-validation/docs/rules/Between.md

39 lines
810 B
Markdown
Raw Permalink Normal View History

2015-01-30 09:40:06 +01:00
# Between
- `Between(mixed $minimum, mixed $maximum)`
2015-01-30 09:40:06 +01:00
Validates whether the input is between two other values.
2015-01-30 09:40:06 +01:00
```php
v::intVal()->between(10, 20)->validate(10); // true
v::intVal()->between(10, 20)->validate(15); // true
v::intVal()->between(10, 20)->validate(20); // true
2015-01-30 09:40:06 +01:00
```
Validation makes comparison easier, check out our supported
[comparable values](../07-comparable-values.md).
2015-01-30 09:40:06 +01:00
Message template for this validator includes `{{minValue}}` and `{{maxValue}}`.
## Categorization
- Comparisons
## Changelog
Version | Description
--------|-------------
2.0.0 | Became always inclusive
1.0.0 | Became inclusive by default
0.3.9 | Created
***
2015-01-30 09:40:06 +01:00
See also:
2018-12-11 13:31:50 +01:00
- [DateTime](DateTime.md)
- [GreaterThan](GreaterThan.md)
- [Length](Length.md)
- [LessThan](LessThan.md)
- [Max](Max.md)
- [Min](Min.md)