Manuál PHP | ||
---|---|---|
PÅ™edcházejÃcà | Dalšà |
DOMDocument->createElementNS()
(no version information, might be only in CVS)
DOMDocument->createElementNS() -- Create new element node with an associated namespacePopis
class DOMDocument {DOMElement createElementNS ( string namespaceURI, string qualifiedName [, string value] )
}
This function creates a new element node with an associated namespace. Tento uzel se v dokumentu neobjevÃ, nebyl-li pÅ™idán napÅ™. funkcà DOMNode->appendChild().
Seznam parametrů
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.
Errors/Exceptions
- DOM_INVALID_CHARACTER_ERR
Raised if
qualifiedName
contains an invalid character.- DOM_NAMESPACE_ERR
Raised if
qualifiedName
is a maformed qualified name.
PÅ™Ãklady
Viz také
DOMNode->appendChild() |
DOMDocument->createAttribute() |
DOMDocument->createAttributeNS() |
DOMDocument->createCDATASection() |
DOMDocument->createComment() |
DOMDocument->createDocumentFragment() |
DOMDocument->createElement() |
DOMDocument->createEntityReference() |
DOMDocument->createProcessingInstruction() |
DOMDocument->createTextNode() |
PÅ™edcházejÃcà | Domů | Dalšà |
DOMDocument->createElement() | Nahoru |