1 <?php declare(strict_types=1);
23 if ($el instanceof \DOMDocument) {
24 $root = $el->documentElement;
26 if ($el instanceof \DOMElement) {
29 throw new \InvalidArgumentException(
"Invalid arguments, expected DOMElement or DOMDocument");
33 $this->nodeList = $root->childNodes;
58 return $this->nodeList->item($this->position);
66 return $this->position < $this->nodeList->length;
82 return $this->
current()->hasChildNodes();
90 return new self($this->
current());
__construct(\DOMNode $el)
ilHtmlDomNodeIterator constructor.
Class ilHtmlDomNodeIterator.