respect-validation/docs/rules/HexRgbColor.md
2024-12-09 01:34:50 +01:00

1.2 KiB

HexRgbColor

  • HexRgbColor()

Validates weather the input is a hex RGB color or not.

v::hexRgbColor()->isValid('#FFFAAA'); // true
v::hexRgbColor()->isValid('#ff6600'); // true
v::hexRgbColor()->isValid('123123'); // true
v::hexRgbColor()->isValid('FCD'); // true

Templates

HexRgbColor::TEMPLATE_STANDARD

Mode Template
default {{name}} must be a hex RGB color
inverted {{name}} must not be a hex RGB color

Template placeholders

Placeholder Description
name The validated input or the custom validator name (if specified).

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: