mirror of
https://github.com/Respect/Validation.git
synced 2026-03-16 23:35:45 +01:00
489 B
489 B
Unique
Unique()
Validates whether the input array contains only unique values.
v::unique()->validate([]); // true
v::unique()->validate([1, 2, 3]); // true
v::unique()->validate([1, 2, 2, 3]); // false
v::unique()->validate([1, 2, 3, 1]); // false
Categorization
- Arrays
Changelog
| Version | Description |
|---|---|
| 2.0.0 | Created |
See also: