respect-validation/docs/Contains.md
Henrique Moody 66027b85a5 Documentation improvements
- Add a space after comments with `//`;
- Add missing "See also" sections in some files
2015-10-19 22:55:05 -02:00

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)