Back to Validation

Printable

docs/validators/Printable.md

3.1.11.9 KB
Original Source
<!-- SPDX-License-Identifier: MIT SPDX-FileCopyrightText: (c) Respect Project Contributors SPDX-FileContributor: Alexandre Gomes Gaigalas <[email protected]> SPDX-FileContributor: Emmerson Siqueira <[email protected]> SPDX-FileContributor: Henrique Moody <[email protected]> -->

Printable

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

Similar to Graph but accepts whitespace.

php
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