respect-validation/docs/rules/Digit.md
Mazen Touati 9c7550aa43
Create "NotEmoji" rule
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>
2019-02-03 17:51:55 +01:00

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: