1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/movim_ynh.git synced 2024-09-03 19:46:19 +02:00
movim_ynh/sources/vendor/respect/validation/docs/In.md
2016-03-14 23:16:11 +01:00

557 B

In

  • v::in(mixed $haystack)
  • v::in(mixed $haystack, boolean $identical = false)

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}}.


See also: