mirror of
https://github.com/Respect/Validation.git
synced 2026-03-16 23:35:45 +01:00
36 lines
612 B
Markdown
36 lines
612 B
Markdown
# In
|
|
|
|
- `In(mixed $haystack)`
|
|
- `In(mixed $haystack, bool $identical)`
|
|
|
|
Validates if the input is contained in a specific haystack.
|
|
|
|
For strings:
|
|
|
|
```php
|
|
v::in('lorem ipsum')->validate('ipsum'); // true
|
|
```
|
|
|
|
For arrays:
|
|
|
|
```php
|
|
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:
|
|
|
|
- [StartsWith](StartsWith.md)
|
|
- [EndsWith](EndsWith.md)
|
|
- [Contains](Contains.md)
|