DOMNamedNodeMap::getNamedItem

Retrieves a node specified by name

Description

public DOMNodenull DOMNamedNodeMap::getNamedItem(string $qualifiedName)

Retrieves a node specified by its nodeName.

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('book.xml');

$id = $doc->firstChild->attributes->getNamedItem('id');

?>

Example #2 Accessing attribute with array syntax

<?php

$id = $doc->firstChild->attributes['id'];

?>

See Also

  • DOMNamedNodeMap::getNamedItemNS