📜  PHP | DOMElement setIdAttributeNS()函数

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

PHP | DOMElement setIdAttributeNS()函数

DOMElement::setIdAttributeNS()函数是PHP中的一个内置函数,用于将给定本地名称和命名空间 URI 指定的属性声明为 ID 类型。

句法:

void DOMElement::setIdAttributeNS( string $namespaceURI, 
string $localName, bool $isId )

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

  • $namespaceURI:它指定命名空间 URI。
  • $localName:它指定本地名称。
  • $isId:它指定是否要 name 为 ID 类型。

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

例外:如果节点是只读的,则此函数抛出 DOM_NO_MODIFICATION_ALLOWED_ERR 或 DOM_NOT_FOUND,如果 name 不是此元素的属性。

下面的示例说明了PHP中的DOMElement::setIdAttributeNS()函数

示例 1:

validateOnParse = true;
    
// Create an element
$element = $dom->createElementNS("my_namespace", "x:p", 
                         'Hello, this is my paragraph.');
    
// Add the node to the dom
$newnode = $dom->appendChild($element);
    
// Set the attribute
$newnode->setAttributeNS("my_namespace", "id", "my_value");
  
// Set that attribute as id
$element->setIDAttributeNS("my_namespace", 'id', true);
    
echo $dom->saveXML();
?>

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

示例 2:

validateOnParse = true;
    
// Create an element
$element = $dom->createElementNS("my_namespace", "x:p", 
                                       'GeeksforGeeks');
    
// Add the node to the dom
$newnode = $dom->appendChild($element);
    
// Set the attribute
$newnode->setAttributeNS("my_namespace", "id",
                                       "geeksforgeeks");
  
// Set that attribute as id
$element->setIDAttributeNS("my_namespace", 'id', true);
  
// Get the text of element with id='geeksforgeeks'
// just to see if it works
$value = $dom->getElementById('geeksforgeeks')->textContent;
echo $value;
?>

输出:

GeeksforGeeks

参考: https://www. PHP.net/manual/en/domelement.setidattributens。 PHP