respect-validation/library/Rules/Charset.php
Henrique Moody da193b75e0 Use PSR-2 standard
Most changes was made by php-cs-fixer.
Also removes unused `RecursiveTreeIterator` class.
2015-01-08 00:44:12 -02:00

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);
}
}