📜  PHP | DOMElement setAttributeNS()函数

📅  最后修改于: 2022-05-13 01:56:49.909000             🧑  作者: Mango

PHP | DOMElement setAttributeNS()函数

DOMElement::setAttributeNS()函数是PHP中的一个内置函数,用于将具有给定命名空间和名称的属性设置为给定值。如果该属性不存在,它将被创建。

句法:

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

参数:此函数接受三个参数,如上所述,如下所述:

  • $namespaceURI:它指定命名空间 URI。
  • $qualifiedName:它指定属性的名称。
  • $value:指定属性的值。

返回值:此函数不返回任何内容。

例外:此函数抛出 DOM_NO_MODIFICATION_ALLOWED_ERR,如果节点是只读的或 DOM_NAMESPACE_ERR,如果$qualifiedName是格式错误的限定名称,或者如果$qualifiedName有前缀且 namespaceURI 为 NULL。

下面的例子说明了PHP中的DOMElement::setAttributeNS()函数

示例 1:

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:

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: 
";     // 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 "
After the addition of attributes:
";      // 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