DOMNamedNodeMap::getNamedItem
(PHP 5, PHP 7, PHP 8)
DOMNamedNodeMap::getNamedItem — Retrieves a node specified by name
说明
Retrieves a node specified by its nodeName.
参数
qualifiedName-
The
nodeNameof the node to retrieve.
返回值
A node (of any type) with the specified nodeName, or
null if no node is found.
示例
示例 #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');
?>示例 #2 Accessing attribute with array syntax
<?php
$doc = new DOMDocument;
$doc->load('examples/book.xml');
$id = $doc->firstChild->nextSibling->nextSibling->firstChild->nextSibling->attributes['id'];
?>参见
- DOMNamedNodeMap::getNamedItemNS() - Retrieves a node specified by local name and namespace URI