for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Install GitHub App
<?php
/*
* This file is part of Respect/Validation.
*
* (c) Alexandre Gomes Gaigalas <[email protected]>
* For the full copyright and license information, please view the "LICENSE.md"
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Respect\Validation\Rules;
use Respect\Validation\Exceptions\ComponentException;
use function array_diff;
use function in_array;
use function mb_detect_encoding;
use function mb_list_encodings;
/**
* Validates if a string is in a specific charset.
* @author Alexandre Gomes Gaigalas <[email protected]>
* @author Henrique Moody <[email protected]>
* @author William Espindola <[email protected]>
final class Charset extends AbstractRule
{
* @var string[]
private $charset;
* Initializes the rule.
* @param string ...$charset
* @throws ComponentException
public function __construct(string ...$charset)
$available = mb_list_encodings();
if (!empty(array_diff($charset, $available))) {
throw new ComponentException('Invalid charset');
}
$this->charset = $charset;
* {@inheritdoc}
public function validate($input): bool
$detectedEncoding = mb_detect_encoding($input, $this->charset, true);
return in_array($detectedEncoding, $this->charset, true);