Printable

February 3, 2026 ยท View on GitHub

  • Printable()
  • Printable(string ...$additionalChars)

Similar to Graph but accepts whitespace.

v::printable()->assert('LMKA0$% _123');
// Validation passes successfully

Templates

Printable::TEMPLATE_STANDARD

ModeTemplate
default{{subject}} must consist only of printable characters
inverted{{subject}} must not consist only of printable characters

Printable::TEMPLATE_EXTRA

ModeTemplate
default{{subject}} must consist only of printable characters or {{additionalChars}}
inverted{{subject}} must not consist only of printable characters or {{additionalChars}}

Template placeholders

PlaceholderDescription
additionalCharsAdditional characters that are considered valid.
subjectThe validated input or the custom validator name (if specified).

Categorization

  • Strings

Changelog

VersionDescription
3.0.0Templates changed
0.5.0Created

See Also