respect-validation/docs/Charset.md

26 lines
449 B
Markdown
Raw Normal View History

2015-01-30 09:40:06 +01:00
# Charset
- `Charset(mixed $charset)`
2015-01-30 09:40:06 +01:00
Validates if a string is in a specific charset.
```php
v::charset('ASCII')->validate('açúcar'); // false
2015-01-30 09:40:06 +01:00
v::charset('ASCII')->validate('sugar'); //true
2015-10-18 03:44:47 +02:00
v::charset(['ISO-8859-1', 'EUC-JP'])->validate('日本国'); // true
2015-01-30 09:40:06 +01:00
```
The array format is a logic OR, not AND.
## Changelog
Version | Description
--------|-------------
0.5.0 | Created
***
See also:
* [Alnum](Alnum.md)
* [Alpha](Alpha.md)