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

19 lines
287 B
Markdown
Raw Normal View History

2022-08-29 20:14:13 +02:00
# Cntrl
- `v::cntrl()`
- `v::cntrl(string $additionalChars)`
This is similar to `v::alnum()`, but only accepts control characters:
```php
v::cntrl()->validate("\n\r\t"); // true
```
***
See also:
* [Alnum](Alnum.md)
* [Prnt](Prnt.md)
* [Punct](Punct.md)
* [Space](Space.md)