The Dom\HTMLDocument class

Introduction

Represents an HTML document.

Class synopsis

final Dom\HTMLDocument
extends Dom\Document
/* Inherited constants */
public const int Dom\Node::DOCUMENT_POSITION_DISCONNECTED = 0x1;
public const int Dom\Node::DOCUMENT_POSITION_PRECEDING = 0x2;
public const int Dom\Node::DOCUMENT_POSITION_FOLLOWING = 0x4;
public const int Dom\Node::DOCUMENT_POSITION_CONTAINS = 0x8;
public const int Dom\Node::DOCUMENT_POSITION_CONTAINED_BY = 0x10;
public const int Dom\Node::DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC = 0x20;
/* Inherited properties */
public readonly Dom\Implementation $implementation;
public string $URL;
public string $documentURI;
public string $characterSet;
public string $charset;
public string $inputEncoding;
public readonly Dom\DocumentTypenull $doctype;
public readonly Dom\Elementnull $documentElement;
public readonly Dom\Elementnull $firstElementChild;
public readonly Dom\Elementnull $lastElementChild;
public readonly int $childElementCount;
public Dom\HTMLElementnull $body;
public readonly Dom\HTMLElementnull $head;
public string $title;
public readonly int $nodeType;
public readonly string $nodeName;
public readonly string $baseURI;
public readonly bool $isConnected;
public readonly Dom\Documentnull $ownerDocument;
public readonly Dom\Nodenull $parentNode;
public readonly Dom\Elementnull $parentElement;
public readonly Dom\NodeList $childNodes;
public readonly Dom\Nodenull $firstChild;
public readonly Dom\Nodenull $lastChild;
public readonly Dom\Nodenull $previousSibling;
public readonly Dom\Nodenull $nextSibling;
public stringnull $nodeValue;
public stringnull $textContent;
/* Methods */
/* Not documented yet */
/* Inherited methods */
/* Not documented yet */

Notes

Note: The DOM extension uses UTF-8 encoding when working with methods or properties. The parser methods auto-detect the encoding or allow the caller to specify an encoding.