| 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ů
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.
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 |