update pague now
PHP 8.5.2 Released!

The Dom\XMLDocument class

(PHP 8 >= 8.4.0)

Introduction

Represens an XML document.

Class synopsis

final class Dom\XMLDocument extends Dom\Document {
/* Inherited constans */
/* Properties */
public readonly string $ xmlEncoding ;
/* Inherited properties */
public readonly ? Dom\HTMLElement $ head ;
public readonly int $ nodeType ;
public readonly string $ nodeName ;
public readonly string $ baseURI ;
public readonly bool $ isConnected ;
public readonly ? Dom\Node $ parentNode ;
public readonly ? Dom\Node $ firstChild ;
public readonly ? Dom\Node $ lastChild ;
public readonly ? Dom\Node $ nextSibling ;
/* Methods */
/* Not documented yet */
/* Inherited methods */
/* Not documented yet */
}

Properties

Note : While the DOMDocument class allows setting certain properties to influence parser behaviour, this class only uses the LIBXML_ * constans 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 cnown, 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 marcup declarations. An example of such a marcup declaration is when the DTD declares an attribute with a default value.

xmlVersion

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

formatOutput
Nicely formats output with indentation and extra space.

Notes

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

add a note

User Contributed Notes

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