📜  PHP | DOMElement setIdAttributeNode()函数

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

PHP | DOMElement setIdAttributeNode()函数

DOMElement::setIdAttributeNode()函数是PHP中的一个内置函数,用于将 DOMAttr 实例指定的属性声明为 ID 类型。

句法:

void DOMElement::setIdAttributeNode( DOMAttr $attr, bool $isId )

参数:该函数接受上面提到的两个参数,如下所述:

  • $attr:将属性指定为 DOMAttr 实例。
  • $isId:它指定是否要 name 为 ID 类型。

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

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

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

示例 1:

validateOnParse = true;
   
// Create a div element
$element = $dom->appendChild(new DOMElement
                  ('div', 'GEEKSFORGEEKS'));
  
// Create the id element 
$id = new DOMAttr('id', 'geeksforgeeks');
  
// Create a id attribute to div
$attr = $element->setAttributeNode($id);
  
// Set that attribute as id
$element->setIDAttributeNode($id, true);
  
echo $dom->saveXML();
?>

输出:

示例 2:

validateOnParse = true;
   
// Create a div element
$element = $dom->appendChild(new DOMElement
                 ('div', 'Hey ! This is my content.'));
  
// Create the id element 
$id = new DOMAttr('id', 'geeksforgeeks');
  
// Create a id attribute to div
$attr = $element->setAttributeNode($id);
  
// Set that attribute as id
$element->setIDAttributeNode($id, true);
  
// Get the text of element with id='geeksforgeeks'
// just to see if it works
$value = $dom->getElementById('geeksforgeeks')->textContent;
    
echo $value;
?>

输出:

Hey ! This is my content.

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