DOMNamedNodeMap::getNamedItem
Retrieves a node specified by name
Description
public DOMNodenull DOMNamedNodeMap::getNamedItem(string $qualifiedName
)
Parameters
-
qualifiedName
-
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.
Examples
Example #1 Getting an attribute on a node
<?php
$doc = new DOMDocument;
$doc->load('examples/book.xml');
$id = $doc->firstChild->nextSibling->nextSibling->firstChild->nextSibling->attributes->getNamedItem('id');
?>
Example #2 Accessing attribute with array syntax
<?php
$doc = new DOMDocument;
$doc->load('examples/book.xml');
$id = $doc->firstChild->nextSibling->nextSibling->firstChild->nextSibling->attributes['id'];
?>
See Also
- DOMNamedNodeMap::getNamedItemNS