Join our community in the tech forums for uncut technology discussion.
DOMNamedNodeMap->getNamedItem()
DOMNamedNodeMap->getNamedItem() --
Retrieves a node specified by name
Descriptionclass DOMNamedNodeMap { DOMNode getNamedItem ( string name ) }
Retrieves a node specified by its nodeName.
Parameters
- name
The nodeName of the node to retrieve.
Return Values
A node (of any type) with the specified nodeName, or
NULL if no node is found.
Join our community in the tech forums for uncut technology discussion.
|