mirror of
https://github.com/Respect/Validation.git
synced 2026-03-18 08:09:51 +01:00
28 lines
513 B
Markdown
28 lines
513 B
Markdown
# Contains
|
|
|
|
- `v::contains(mixed $value)`
|
|
- `v::contains(mixed $value, boolean $identical = false)`
|
|
|
|
For strings:
|
|
|
|
```php
|
|
v::contains('ipsum')->validate('lorem ipsum'); // true
|
|
```
|
|
|
|
For arrays:
|
|
|
|
```php
|
|
v::contains('ipsum')->validate(['ipsum', 'lorem']); // true
|
|
```
|
|
|
|
A second parameter may be passed for identical comparison instead
|
|
of equal comparison.
|
|
|
|
Message template for this validator includes `{{containsValue}}`.
|
|
|
|
***
|
|
See also:
|
|
|
|
* [StartsWith](StartsWith.md)
|
|
* [EndsWith](EndsWith.md)
|
|
* [In](In.md)
|