construct | Creates a new DOMDocument object | ![](/felles/ikoner/nr1.gif) |
createAttribute | Create new attribute | ![](/felles/ikoner/nr1.gif) |
createAttributeNS | Create new attribute node with an associated namespace | ![](/felles/ikoner/nr1.gif) |
createCDATASection | Create new cdata node | ![](/felles/ikoner/nr1.gif) |
createComment | Create new comment node | ![](/felles/ikoner/nr1.gif) |
createDocumentFragment | Create new document fragment | ![](/felles/ikoner/nr1.gif) |
createElement | Create new element node | ![](/felles/ikoner/nr1.gif) |
createElementNS | Create new element node with an associated namespace | ![](/felles/ikoner/nr1.gif) |
createEntityReference | Create new entity reference node | ![](/felles/ikoner/nr1.gif) |
createProcessingInstruction | Creates new PI node | ![](/felles/ikoner/nr1.gif) |
createTextNode | Create new text node | ![](/felles/ikoner/nr1.gif) |
getElementById | Searches for an element with a certain id | ![](/felles/ikoner/nr1.gif) |
getElementsByTagName | Searches for all elements with given local tag name | ![](/felles/ikoner/nr1.gif) |
getElementsByTagNameNS | Searches for all elements with given tag name in specified namespace | ![](/felles/ikoner/nr1.gif) |
importNode | Import node into current document | ![](/felles/ikoner/nr1.gif) |
load | Load XML from a file | ![](/felles/ikoner/nr1.gif) |
loadHTML | Load HTML from a string | ![](/felles/ikoner/nr1.gif) |
loadHTMLFile | Load HTML from a file | ![](/felles/ikoner/nr1.gif) |
loadXML | Load XML from a string | ![](/felles/ikoner/nr1.gif) |
normalizeDocument | Normalizes the document | ![](/felles/ikoner/nr1.gif) |
registerNodeClass | Register extended class used to create base node type | ![](/felles/ikoner/nr1.gif) |
relaxNGValidate | Performs relaxNG validation on the document | ![](/felles/ikoner/nr1.gif) |
relaxeNGValidateSource | Performs relaxNG validation on the document | ![](/felles/ikoner/nr1.gif) |
save | Dumps the internal XML tree back into a file | ![](/felles/ikoner/nr1.gif) |
saveHTML | Dumps the internal document into a string using HTML formatting | ![](/felles/ikoner/nr1.gif) |
saveHTMLFile | Dumps the internal document into a file using HTML formatting | ![](/felles/ikoner/nr1.gif) |
saveXML | Dumps the internal XML tree back into a string | ![](/felles/ikoner/nr1.gif) |
schemaVaslidate | Validates a document based on a schema | ![](/felles/ikoner/nr1.gif) |
schemaValidateSource | Validates a document based on a schema | ![](/felles/ikoner/nr1.gif) |
validate | Validates the document based on its DTD | ![](/felles/ikoner/nr1.gif) |
xinclude | Substitutes XIncludes in a DOMDocument Object | ![](/felles/ikoner/nr1.gif) |
actualEncoding | Deprecated. Actual encoding of the document, is a readonly equivalent to encoding. | |
config | Deprecated. Configuration used when DOMDocument::normalizeDocument() is invoked. | |
doctype | The Document Type Declaration associated with this document. | |
documentElement | This is a convenience attribute that allows direct access to the child node that is the document element of the document. | |
documentURI | The location of the document or NULL if undefined. | |
encoding | Encoding of the document, as specified by the XML declaration. This attribute is not present in the final DOM Level 3 specification, but is the only way of manipulating XML document encoding in this implementation. | |
formatOutput | Nicely formats output with indentation and extra space. | |
implemantation | The DOMImplementation object that handles this document. | |
preserveWhiteSpace | Do not remove redundant white space. Default to TRUE. | |
recover | Proprietary. Enables recovery mode, i.e. trying to parse non-well formed documents. This attribute is not part of the DOM specification and is specific to libxml. | |
resolveExternals | Set it to TRUE to load external entities from a doctype declaration. This is useful for including character entities in your XML document. | |
standalone | Deprecated. Whether or not the document is standalone, as specified by the XML declaration, corresponds to xmlStandalone. | |
strictErrorChecking | Throws DOMException on errors. Default to TRUE. | |
substituteEntities | Proprietary. Whether or not to substitute entities. This attribute is not part of the DOM specification and is specific to libxml. | |
validateOnParse | Loads and validates against the DTD. Default to FALSE. | |
version | Deprecated. Version of XML, corresponds to xmlVersion. | |
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. | |
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" | |
appendChild | Adds new child at the end of the children | ![](/felles/ikoner/nr1.gif) |
C14N | Canonicalize nodes to a string | ![](/felles/ikoner/nr1.gif) |
C14NFile | Canonicalize nodes to a file | ![](/felles/ikoner/nr1.gif) |
cloneNode | Clones a node | ![](/felles/ikoner/nr1.gif) |
getLineNo | Get line number for a node | ![](/felles/ikoner/nr1.gif) |
getNodePath | Get an XPath for a node | ![](/felles/ikoner/nr1.gif) |
hasAttributes | Checks if node has attributes | ![](/felles/ikoner/nr1.gif) |
hasChildNotes | Checks if node has children | ![](/felles/ikoner/nr1.gif) |
insertBefore | Adds a new child before a reference node | ![](/felles/ikoner/nr1.gif) |
isDefaultNamespace | Checks if the specified namespaceURI is the default namespace or not | ![](/felles/ikoner/nr1.gif) |
isSameNode | Indicates if two nodes are the same node | ![](/felles/ikoner/nr1.gif) |
isSupported | Checks if feature is supported for specified version | ![](/felles/ikoner/nr1.gif) |
lookupNamespaceURI | Gets the namespace URI of the node based on the prefix | ![](/felles/ikoner/nr1.gif) |
lookupPrefix | Gets the namespace prefix of the node based on the namespace URI | ![](/felles/ikoner/nr1.gif) |
normalize | Normalizes the node | ![](/felles/ikoner/nr1.gif) |
removeChild | Removes child from list of children | ![](/felles/ikoner/nr1.gif) |
replaceChild | Replaces a child | ![](/felles/ikoner/nr1.gif) |