respect-validation/docs/rules/In.md
Kirill Dlussky 81d71749b7
Create "ContainsAny" rule
Co-authored-by: Henrique Moody <henriquemoody@gmail.com>
2018-12-13 00:11:08 +01:00

664 B

In

  • In(mixed $haystack)
  • In(mixed $haystack, bool $identical)

Validates if the input is contained in a specific haystack.

For strings:

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

For arrays:

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

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

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

Changelog

Version Description
0.3.9 Created

See also: