PHP Manual
DOMDocument->createElementNS()
(no version information, might be only in CVS)
DOMDocument->createElementNS() -- Create new element node with an associated namespaceDescription
class DOMDocument {DOMElement createElementNS ( string namespaceURI, string qualifiedName [, string value] )
}
This 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().
Parameters
namespaceURIThe URI of the namespace.
qualifiedNameThe qualified name of the element, as prefix:tagname.
valueThe value of the element. By default, an empty element will be created. You can also set the value later with DOMElement->nodeValue.
Errors/Exceptions
- DOM_INVALID_CHARACTER_ERR
Raised if
qualifiedNamecontains an invalid character.- DOM_NAMESPACE_ERR
Raised if
qualifiedNameis a maformed qualified name.
Examples
See Also
| DOMNode->appendChild() |
| DOMDocument->createAttribute() |
| DOMDocument->createAttributeNS() |
| DOMDocument->createCDATASection() |
| DOMDocument->createComment() |
| DOMDocument->createDocumentFragment() |
| DOMDocument->createElement() |
| DOMDocument->createEntityReference() |
| DOMDocument->createProcessingInstruction() |
| DOMDocument->createTextNode() |
Support PHPRO.ORG
Search
PHPRO.ORG Poll
Warning: Participation in PHPRO.ORG polls may incorrectly lead you to believe your opinions matter.

RSS Feed




