当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP DOMNamedNodeMap getNamedItem()用法及代码示例


DOMNamedNodeMap::getNamedItem()函数是PHP中的内置函数,用于检索由名称指定的节点。这用于获取属性项,并进一步获取有关属性的信息。

用法:

DOMNode DOMNamedNodeMap::getNamedItem( string $name )

参数:该函数接受单个参数$name,该参数保存要检索的节点的nodeName。


返回值:成功时,此函数返回具有指定名称的DOMNode。

以下示例说明了PHP中的DOMNamedNodeMap::getNamedItem()函数:

范例1:在此示例中,我们将获取元素的属性值。

<?php 
   
// Create a new DOMDocument 
$dom = new DOMDocument(); 
    
// Load the XML 
$dom->loadXML("<?xml version=\"1.0\"?> 
<root> 
    <html> 
        <h1 id=\"first\"  
            class=\"first\"  
            style=\"color:blue\">  
         Geeksforgeeks  
        </h1> 
    </html> 
</root>"); 
    
// Get the elements 
$node = $dom->getElementsByTagName('h1')[0]; 
    
// Get the attribute value 
$attribute = $node->attributes-> 
    getNamedItem('style')->nodeValue; 
echo $attribute; 
?>

输出:

color:blue

范例2:在此示例中,我们将通过更改attribute的值来检查该函数是否获取最新的属性值。

<?php 
   
// Create a new DOMDocument 
$dom = new DOMDocument(); 
     
// Load the XML 
$dom->loadXML("<?xml version=\"1.0\"?> 
<root> 
    <html> 
        <h1 id=\"first\"  
            class=\"first\"> 
         Geeksforgeeks  
        </h1> 
        <h2> Second heading </h2> 
    </html> 
</root>"); 
     
// Get the elements 
$node = $dom->getElementsByTagName('h1')[0]; 
      
echo "Before:<br>"; 
     
// Get the attribute value 
$attribute = $node->attributes-> 
     getNamedItem('class')->nodeValue; 
echo $attribute; 
      
// Change the value of attribute 
$node->setAttribute('class', 'changed'); 
      
echo "<br>After:<br>"; 
   
// Get the attribute value 
$attribute = $node->attributes-> 
    getNamedItem('class')->nodeValue; 
echo $attribute; 
?>

输出:

Before:
first
After:
changed

参考: https://www.php.net/manual/en/domnamednodemap.getnameditem.php



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | DOMNamedNodeMap getNamedItem() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。