config['tagName']; $attrName = $this->config['attrName']; foreach ($matches as $m) { $entity = $m[0][0]; $chr = html_entity_decode($entity, ENT_HTML5 | ENT_QUOTES, 'UTF-8'); if ($chr === $entity || ord($chr) < 32) { // If the entity was not decoded, we assume it's not valid and we ignore it. // Same thing if it's a control character continue; } $this->parser->addSelfClosingTag($tagName, $m[0][1], strlen($entity))->setAttribute($attrName, $chr); } } }