當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP DOMNamedNodeMap getNamedItemNS()用法及代碼示例


DOMNamedNodeMap::getNamedItemNS()函數是PHP中的內置函數,用於檢索具有特定本地名稱和名稱空間URI的節點。此函數可用於從特定名稱空間獲取屬性的值。

用法:

DOMNode DOMNamedNodeMap::getNamedItemNS
( string $namespaceURl, string $localName )

參數:該函數接受上述和以下描述的兩個參數:


  • $namespaceURl:它指定名稱空間URI。
  • $localName:它指定本地名稱。

返回值:此函數返回具有給定本地名稱和名稱空間URI的節點。

下麵給出的程序說明了PHP中的DOMNamedNodeMap::getNamedItemNS()函數:

程序1:在此示例中,我們將獲得具有兩個不同名稱空間的元素的屬性值。

<?php 
// Create a new DOMDocument 
$dom = new DOMDocument(); 
  
// Create an element with namespace 
$node = $dom->createElementNS( 
   "my_namespace", "x:p", 'Hello, this is my paragraph.'); 
  
// Add the node to the dom 
$newnode = $dom->appendChild($node); 
  
// Set the attribute with a namespace 
$newnode->setAttributeNS("my_namespace", "style", "color:blue"); 
  
echo "<b>Attributes with my_namespace as namespace:</b> <br>"; 
  
// Get the attribute value 
$attribute =  
   $node->attributes->getNamedItemNS('my_namespace', 'style')->nodeValue; 
echo $attribute; 
  
echo "<br><b>Attributes with other_namespace as namespace:</b> <br>"; 
  
// Get the attribute value 
$attribute =  
   $node->attributes->getNamedItemNS('other_namespace', 'style')->nodeValue; 
echo $attribute; 
?>

輸出:

Attributes with my_namespace as namespace:
color:blue
Attributes with other_namespace as namespace:
// Empty string means no attributes found.

程序2:在此示例中,我們將通過更改attribute的值來檢查該函數是否獲取最新的屬性值。

<?php 
// Create a new DOMDocument 
$dom = new DOMDocument(); 
  
// Create an element 
$node = $dom->createElementNS("my_namespace", "x:p", 'GeeksforGeeks'); 
  
// Add the node to the dom 
$newnode = $dom->appendChild($node); 
  
// Set the attribute with a namespace 
$newnode->setAttributeNS("my_namespace", "style", "color:blue"); 
  
echo "<b>Before:</b> <br>"; 
  
// Get the attribute value 
$attribute =  
    $node->attributes->getNamedItemNS('my_namespace', 'style')->nodeValue; 
echo $attribute; 
  
// Change the attribute value  
$newnode->setAttributeNS("my_namespace", "style", "color:red"); 
  
echo "<br><b>After:</b> <br>"; 
  
// Get the attribute value 
$attribute =  
    $node->attributes->getNamedItemNS('my_namespace', 'style')->nodeValue; 
echo $attribute; 
?>

輸出:

Before:
color:blue
After:
color:red

參考: https://www.php.net/manual/en/domnamednodemap.getnameditemns.php



相關用法


注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | DOMNamedNodeMap getNamedItemNS() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。