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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。