(no version information, might be only in CVS)
Retrieves a node specified by its nodeName.
The nodeName of the node to retrieve.
A node (of any type) with the specified nodeName, or NULL if no node is found.
Basic example of use : <?xml version="1.0" encoding="UTF-8"?> <racine version="2.0a"> <article/> </racine> <?php (...) echo $doc->documentElement->attributes->getNamedItem("version")->nodeValue; // returns "2.0a" ?>