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
相關用法
- PHP DOMElement getAttributeNodeNS()用法及代碼示例
- PHP DOMElement removeAttributeNS()用法及代碼示例
- PHP DOMElement __construct()用法及代碼示例
- PHP DOMElement removeAttribute()用法及代碼示例
- PHP DOMElement getAttributeNS()用法及代碼示例
- PHP DOMElement getElementsByTagName()用法及代碼示例
- PHP DOMElement getAttributeNode()用法及代碼示例
- PHP DOMElement getAttribute()用法及代碼示例
- PHP DOMElement hasAttributeNS()用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP Ds\Map get()用法及代碼示例
- PHP pos()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | DOMElement setAttributeNS() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。