respect-validation/docs/rules/EndsWith.md
Henrique Moody 52614d600d
Organize documentation for "Read the Docs"
The current documentation is hosted via GitHub pages rendered by
"Couscous". Every time we need a new version of the documentation
published we need to manually execute the "couscous".

This commit reorganize the documentation to be published to
"Read the Docs" because it will also allow us to have documentations per
version of the library most importantly provider a search field for the
documentation.

The documentation will be then published on:
https://respect-validation.readthedocs.io/

Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
2018-08-23 01:59:39 +02:00

615 B

EndsWith

  • v::endsWith(mixed $value)
  • v::endsWith(mixed $value, boolean $identical = false)

This validator is similar to v::contains(), but validates only if the value is at the end of the input.

For strings:

v::endsWith('ipsum')->validate('lorem ipsum'); // true

For arrays:

v::endsWith('ipsum')->validate(['lorem', 'ipsum']); // true

A second parameter may be passed for identical comparison instead of equal comparison.

Message template for this validator includes {{endValue}}.


See also: