DOMDocument {
DOMNode importNode(DOMNode importedNode,
bool deep);
}
This function returns a copy of the node to import and associates it with
the current document.
参数
- importedNode
The node to import.
- deep
If set to TRUE
, this method will recursively import the subtree under
the importedNode.
异常
DOMException
is thrown if node cannot be imported.