Join our community in the tech forums for uncut technology discussion.
DOMDocument->importNode()
DOMDocument->importNode() -- Import node into current document Descriptionclass DOMDocument { DOMNode importNode ( DOMNode importedNode [, bool deep] ) }
This function returns a copy of the node to import and associates it with
the current document.
Parameters
- importedNode
The node to import.
- deep
If set to TRUE, this method will recursively import the subtree under
the importedNode.
Return Values
The copied node.
Exceptions
DOMException is thrown if node cannot be imported.
Join our community in the tech forums for uncut technology discussion.
|