3 declare(strict_types=1);
28 $this->text = $purified_html_content;
31 public function isValid():
bool 33 if (!preg_match(
'/<[^>]+?>/', $this->text)) {
39 if (!$dom->loadHTML($this->text)) {
45 RecursiveIteratorIterator::SELF_FIRST
47 foreach ($iter as $element) {
49 if (strtolower($element->nodeName) ===
'body') {
53 if ($element->nodeType === XML_ELEMENT_NODE) {
__construct(string $purified_html_content)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ilHtmlDomNodeIterator.