PHP 8.4.2 Released!

The Dom\XMLDocument class

(PHP 8 >= 8.4.0)

Einführung

Represents an XML document.

Klassenbeschreibung

final class Dom\XMLDocument extends Dom\Document {
/* Geerbte Konstanten */
/* Eigenschaften */
public readonly string $xmlEncoding;
/* Geerbte Eigenschaften */
public string $URL;
public readonly ?Dom\DocumentType $doctype;
public readonly ?Dom\Element $documentElement;
public readonly ?Dom\Element $lastElementChild;
public readonly int $childElementCount;
public readonly ?Dom\HTMLElement $head;
public string $title;
public readonly int $nodeType;
public readonly string $nodeName;
public readonly string $baseURI;
public readonly bool $isConnected;
public readonly ?Dom\Document $ownerDocument;
public readonly ?Dom\Node $parentNode;
public readonly ?Dom\Element $parentElement;
public readonly Dom\NodeList $childNodes;
public readonly ?Dom\Node $firstChild;
public readonly ?Dom\Node $lastChild;
public readonly ?Dom\Node $previousSibling;
public readonly ?Dom\Node $nextSibling;
/* Methoden */
/* Not documented yet */
/* Geerbte Methoden */
/* Not documented yet */
}

Eigenschaften

Hinweis: While the DOMDocument class allows setting certain properties to influence parser behaviour, this class only uses the LIBXML_* constants to configure the parser.

xmlEncoding

An attribute specifying, as part of the XML declaration, the encoding of this document. This is null when unspecified or when it is not known, such as when the Document was created in memory.

xmlStandalone

An attribute specifying, as part of the XML declaration, whether this document is standalone. This is false when unspecified. A standalone document is one where there are no external markup declarations. An example of such a markup declaration is when the DTD declares an attribute with a default value.

xmlVersion

An attribute specifying, as part of the XML declaration, the version number of this document. If there is no declaration and if this document supports the "XML" feature, the value is "1.0".

formatOutput
Nicely formats output with indentation and extra space.

Anmerkungen

Hinweis: Die Erweiterung DOM verwendet die UTF-8-Kodierung, wenn sie mit Methoden oder Eigenschaften arbeitet. Die Parser-Methoden erkennen die Kodierung automatisch oder erlauben es dem Aufrufer, eine Kodierung anzugeben.

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top