Skip to content

Latest commit

 

History

History
44 lines (30 loc) · 715 Bytes

In.md

File metadata and controls

44 lines (30 loc) · 715 Bytes

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')->isValid('ipsum'); // true

For arrays:

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

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

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

Categorization

  • Arrays
  • Comparisons
  • Strings

Changelog

Version Description
0.3.9 Created

See also: