Microweber\Utils\lib\XSSSecurity::decodeEntity PHP Метод

decodeEntity() защищенный Метод

HTML entity decode callback.
protected decodeEntity ( array $match ) : string
$match array
Результат string
    protected function decodeEntity($match)
    {
        $hash = $this->xssHash();
        $match = preg_replace('|\\&([a-z\\_0-9\\-]+)\\=([a-z\\_0-9\\-/]+)|i', $hash . '\\1=\\2', $match[0]);
        return str_replace($hash, '&', $this->entityDecode($match));
    }