mirror of
https://github.com/Respect/Validation.git
synced 2026-03-16 07:15:45 +01:00
The data in this commit has been gathered, scrapped, organized and treated based on the Emoji Unicode V11 specification [1]. [1]: https://unicode.org/Public/emoji/11.0/emoji-test.txt Co-authored-by: Henrique Moody <henriquemoody@gmail.com>
874 B
874 B
Digit
Digit()Digit(string ...$additionalChars)
Validates whether the input contains only digits.
v::digit()->validate('020 612 1851'); // false
v::digit(' ')->validate('020 612 1851'); // true
v::digit()->validate('172.655.537-21'); // false
v::digit('.', '-')->validate('172.655.537-21'); // true
Changelog
| Version | Description |
|---|---|
| 2.0.0 | Removed support to whitespaces by default |
| 0.5.0 | Renamed from Digits to Digit |
| 0.3.9 | Created as Digits |
See also: