February 3, 2002 - Node Types You Can Add to the XML Tree
February 3, 2002 Node Types You Can Add to the XML Tree Tips: February 2002
Yehuda Shiran, Ph.D.
|
DOMDocument
tree. You can add new nodes to the tree with the createNode()
method, a member of the DOMDocument
object. The first parameter of createNode()
is the node type. Out of the 12 node types, you can create nodes for only eight:
1. "element"
2. "attribute"
3. "text"
4. "cdatasection"
5. "entityreference"
7. "processinginstruction"
8. "comment"
11. "documentfragment"
There are four node types you cannot create:
6. "entity"
9. "document"
10. "documenttype"
12. "notation"