DOMNamedNodeMap::item()函數是PHP中的內置函數,用於檢索由索引指定的節點。此函數用於從元素獲取特定屬性,此外,我們可以根據要求獲取該屬性的名稱或值。
用法:
DOMNamedNodeMap DOMNamedNodeMap::item( int $index )
參數:該函數接受一個包含索引的參數$index。
返回值:此函數返回Map中索引位置的節點。
下麵給出的程序說明了PHP中的DOMNamedNodeMap::item()函數:程序1:在此示例中,使用index()提取屬性後,將獲得屬性名稱
<?php
// Create a new DOMDocument
$dom = new DOMDocument();
// Load the XML
$dom->loadXML("<?xml version=\"1.0\"?>
<root>
<html>
<h1 id=\"first\"
class=\"first\" attrib=\"attrib_value\"> Geeksforgeeks </h1>
</html>
</root>");
// Get the elements
$node = $dom->getElementsByTagName('h1')[0];
// Get the 2nd attribute's value
$attribute1 = $node->attributes->item(0)->nodeName;
$attribute2 = $node->attributes->item(1)->nodeName;
$attribute3 = $node->attributes->item(2)->nodeName;
echo "$attribute1, $attribute2 and $attribute3";
?>
輸出:
id, class and attrib
程序2:在此示例中,使用index()提取屬性後,我們將獲得屬性的值
<?php
// Create a new DOMDocument
$dom = new DOMDocument();
// Load the XML
$dom->loadXML("<?xml version=\"1.0\"?>
<root>
<html>
<h1 id=\"first\"
class=\"geeksforgeeks\" attrib=\"attrib_value\"> Geeksforgeeks </h1>
</html>
</root>");
// Get the elements
$node = $dom->getElementsByTagName('h1')[0];
// Get the 2nd attribute's value
$attribute1 = $node->attributes->item(0)->nodeValue;
$attribute2 = $node->attributes->item(1)->nodeValue;
$attribute3 = $node->attributes->item(2)->nodeValue;
echo "$attribute1, $attribute2 and $attribute3";
?>
輸出:
first, geeksforgeeks and attrib_value
參考: https://www.php.net/manual/en/domnamednodemap.item.php
相關用法
- PHP DOMNamedNodeMap getNamedItemNS()用法及代碼示例
- CSS CSSStyleDeclaration item()用法及代碼示例
- HTML DOM item()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | DOMNamedNodeMap item() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。