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


PHP DOMElement setAttributeNS()用法及代碼示例


DOMElement::setAttributeNS()函數是PHP中的內置函數,用於將具有給定名稱空間和名稱的屬性設置為給定值。如果該屬性不存在,則將創建它。

用法:

void DOMElement::setAttributeNS( string $namespaceURI, 
string $qualifiedName, string $value )

參數:此函數接受上述和以下所述的三個參數:


  • $namespaceURI:它指定名稱空間URI。
  • $qualifiedName:它指定屬性的名稱。
  • $value:它指定屬性的值。

返回值:此函數不返回任何內容。

異常:如果節點是隻讀節點或DOM_NAMESPACE_ERR,或者$qualifiedName是格式錯誤的合格名稱,或者$qualifiedName具有前綴並且namespaceURI為NULL,則此函數將拋出DOM_NO_MODIFICATION_ALLOWED_ERR。

以下示例說明了PHP中的DOMElement::setAttributeNS()函數:

範例1:

<?php 
  
// Create a new DOMDocument 
$dom = new DOMDocument(); 
   
// Create an element 
$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 
$newnode->setAttributeNS("my_namespace", "id", "my_value"); 
  
echo $dom->saveXML(); 
?>

輸出:您可以按Ctrl + U查看DOM。

範例2:

<?php 
  
// Create a new DOMDocument 
$dom = new DOMDocument(); 
   
// Create an element 
$node = $dom->createElementNS("my_namespace", "x:p", 
                     'Hello, this is my paragraph.'); 
   
// Add the node to the dom 
$newnode = $dom->appendChild($node); 
  
echo "Before the addition of attributes:<br>"; 
   
// Get the attribute count 
$attributeCount = $node->attributes->count(); 
echo 'No of attributes => ' . $attributeCount; 
   
// Set the attribute with a namespace 
$newnode->setAttributeNS("my_namespace", "style", "color:blue"); 
  
echo "<br>After the addition of attributes:<br>"; 
    
// Get the attribute count 
$attributeCount = $node->attributes->count(); 
echo 'No of attributes => ' . $attributeCount; 
?>

輸出:

Before the addition of attributes:
No of attributes => 0
After the addition of attributes:
No of attributes => 1

參考: https://www.php.net/manual/en/domelement.setattributens.php



相關用法


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