respect-validation/docs/rules/Lowercase.md

27 lines
351 B
Markdown
Raw Normal View History

2015-01-30 09:40:06 +01:00
# Lowercase
- `Lowercase()`
2015-01-30 09:40:06 +01:00
Validates whether the characters in the input are lowercase.
2015-01-30 09:40:06 +01:00
```php
v::stringType()->lowercase()->validate('xkcd'); // true
2015-01-30 09:40:06 +01:00
```
## Categorization
- Strings
## Changelog
Version | Description
--------|-------------
0.3.9 | Created
***
2015-01-30 09:40:06 +01:00
See also:
2018-12-11 13:31:50 +01:00
- [Alnum](Alnum.md)
- [Alpha](Alpha.md)
- [Uppercase](Uppercase.md)