| php-manual.net |
|
| Home | PHP Manual auf Deutsch | PHP Manual in English | PHP manuel le sur le français | Impressum |
DOMNode->appendChild()(No version information available, might be only in CVS) DOMNode->appendChild() — Adds new child at the end of the children BeschreibungDOMNode
DOMNode appendChild
( DOMNode $newnode
)
This functions appends a child to an existing list of children or creates a new list of children. The child can be created with e.g. DOMDocument->createElement(), DOMDocument->createTextNode() etc. or simply by using any other node. Parameter Liste
RückgabewerteThe node added. Fehler/Exceptions
BeispieleThe following example will add a new element node to a fresh document. Example#1 Adding a child
<?php |