📅  最后修改于: 2023-12-03 15:03:36.879000             🧑  作者: Mango
getNamedItem()
函数是PHP中DOMNamedNodeMap类的一个方法,它用于获取节点映射表中指定名称的节点。它返回指定节点名称的节点作为DOMNode对象,如果节点不存在,则返回 null。
public function getNamedItem ( string $name ) : DOMNode
name
:字符串类型,表示要返回的节点的名称。DOMNode
:如果节点存在,则返回指定节点名称的节点作为DOM Node对象,否则返回 null。以下示例演示如何使用getNamedItem()
函数查找XML文档中具有指定名称的节点。请注意,以下XML代码是我们将在示例中使用的样本XML。
<?xml version="1.0"?>
<catalog>
<book id="bk101">
<author>Gambardella, Matthew</author>
<title>XML Developer's Guide</title>
<genre>Computer</genre>
<price>44.95</price>
<publish_date>2000-10-01</publish_date>
<description>An in-depth look at creating applications
with XML.</description>
</book>
<book id="bk102">
<author>Ralls, Kim</author>
<title>Midnight Rain</title>
<genre>Fantasy</genre>
<price>5.95</price>
<publish_date>2000-12-16</publish_date>
<description>A former architect battles corporate zombies,
an evil sorceress, and her own childhood to become queen
of the world.</description>
</book>
</catalog>
下面的PHP代码使用了getNamedItem()
函数来查询XML文档中ID为“bk101”的书的作者。在这个例子中,$catalog
是XML文档的根节点。
<?php
$catalog = new DOMDocument();
$catalog->load('catalog.xml');
$book = $catalog->getElementsByTagName('book')->item(0);
$bookId = $book->getAttribute('id');
if ($bookId == "bk101") {
$author = $book->getElementsByTagName('author')->item(0);
$authorName = $author->nodeValue;
}
echo "Author of book with ID bk101: " . $authorName;
?>
上面的PHP代码输出:
Author of book with ID bk101: Gambardella, Matthew