mirror of
https://github.com/Respect/Validation.git
synced 2026-03-16 15:25:45 +01:00
531 B
531 B
HexRgbColor
HexRgbColor()
Validates weather the input is a hex RGB color or not.
v::hexRgbColor()->validate('#FFFAAA'); // true
v::hexRgbColor()->validate('#ff6600'); // true
v::hexRgbColor()->validate('123123'); // true
v::hexRgbColor()->validate('FCD'); // true
Categorization
- Strings
Changelog
| Version | Description |
|---|---|
| 2.1.0 | Allow hex RGB colors to be case-insensitive |
| 2.0.0 | Allow hex RGB colors with 3 integers |
| 0.7.0 | Created |
See also: