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

21 lines
402 B
Markdown
Raw Normal View History

2022-08-29 20:14:13 +02:00
# Charset
- `v::charset(mixed $charset)`
Validates if a string is in a specific charset.
```php
v::charset('ASCII')->validate('açúcar'); // false
v::charset('ASCII')->validate('sugar'); //true
v::charset(['ISO-8859-1', 'EUC-JP'])->validate('日本国'); // true
```
The array format is a logic OR, not AND.
***
See also:
* [Alnum](Alnum.md)
* [Alpha](Alpha.md)
* [PhpLabel](PhpLabel.md)