DOMDocument->createElementNS()
(no version information, might be only in CVS)
DOMDocument->createElementNS() -- Create new element node with an associated namespaceOpis
class DOMDocument {DOMElement createElementNS ( string namespaceURI, string qualifiedName [, string value] )
}
This function creates a new element node with an associated namespace. Ten węzeł nie pojawi się w dokumencie dopóki nie zostanie wstawiony, np. metodą DOMNode->appendChild().
Parametry
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.
Błędy/Wyjątki
- DOM_INVALID_CHARACTER_ERR
Raised if
qualifiedNamecontains an invalid character.- DOM_NAMESPACE_ERR
Raised if
qualifiedNameis a maformed qualified name.
Przykłady
Patrz także
| DOMNode->appendChild() |
| DOMDocument->createAttribute() |
| DOMDocument->createAttributeNS() |
| DOMDocument->createCDATASection() |
| DOMDocument->createComment() |
| DOMDocument->createDocumentFragment() |
| DOMDocument->createElement() |
| DOMDocument->createEntityReference() |
| DOMDocument->createProcessingInstruction() |
| DOMDocument->createTextNode() |
| Poprzedni | Spis treści | Następny |
| DOMDocument->createElement() | Początek rozdziału |