tao-test/app/vendor/respect/validation/docs/rules/Vowel.md

18 lines
256 B
Markdown
Raw Normal View History

2022-08-29 20:14:13 +02:00
# Vowel
- `v::vowel()`
Similar to `v::alnum()`. Validates strings that contains only vowels:
```php
v::vowel()->validate('aei'); // true
```
***
See also:
* [Alnum](Alnum.md)
* [Alpha](Alpha.md)
* [Consonant](Consonant.md)
* [Digit](Digit.md)