(no version information, might be only in CVS)
DOMDocument->createElementNS() -- Create new element node with an associated namespaceThis function creates a new element node with an associated namespace. This node will not show up in the document unless it is inserted with e.g. DOMNode->appendChild().
namespaceURI
The URI of the namespace.
qualifiedName
The qualified name of the element, as prefix:tagname.
value
The value of the element. By default, an empty element will be created. You can also set the value later with DOMElement->nodeValue.
Raised if qualifiedName
contains an invalid character.
Raised if qualifiedName
is a maformed qualified
name.
DOMNode->appendChild() |
DOMDocument->createAttribute() |
DOMDocument->createAttributeNS() |
DOMDocument->createCDATASection() |
DOMDocument->createComment() |
DOMDocument->createDocumentFragment() |
DOMDocument->createElement() |
DOMDocument->createEntityReference() |
DOMDocument->createProcessingInstruction() |
DOMDocument->createTextNode() |