respect-validation/docs/rules/Charset.md
2018-12-11 13:31:50 +01:00

537 B

Charset

  • Charset(string ...$charset)

Validates if a string is in a specific charset.

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.

Changelog

Version Description
2.0.0 Charset supports multiple charsets on its constructor
0.5.0 Created

See also: