mirror of
https://github.com/Respect/Validation.git
synced 2026-03-16 07:15:45 +01:00
Most changes was made by php-cs-fixer. Also removes unused `RecursiveTreeIterator` class.
32 lines
825 B
PHP
32 lines
825 B
PHP
<?php
|
|
namespace Respect\Validation\Rules;
|
|
|
|
use Respect\Validation\Exceptions\ComponentException;
|
|
|
|
class Charset extends AbstractRule
|
|
{
|
|
public $charset = null;
|
|
|
|
public function __construct($charset)
|
|
{
|
|
$available = mb_list_encodings();
|
|
$charset = is_array($charset) ? $charset : array($charset);
|
|
$charset = array_filter($charset, function ($c) use ($available) {
|
|
return in_array($c, $available, true);
|
|
});
|
|
|
|
if (!$charset) {
|
|
throw new ComponentException(
|
|
'Invalid charset'
|
|
);
|
|
}
|
|
$this->charset = $charset;
|
|
}
|
|
|
|
public function validate($input)
|
|
{
|
|
$detectedEncoding = mb_detect_encoding($input, $this->charset, true);
|
|
|
|
return in_array($detectedEncoding, $this->charset, true);
|
|
}
|
|
}
|