📜  PHP | DOMElement setIdAttribute()函数

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

PHP | DOMElement setIdAttribute()函数

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

句法:

void DOMElement::setIdAttribute( string $name, bool $isId )

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

  • $name:它指定属性的名称。
  • $isId:它指定是否要 name 为 ID 类型。

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

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

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

示例 1:

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

输出:按 Ctrl+U 查看 DOM。

示例 2:

validateOnParse = true;
   
// Create a div element
$element = $dom->appendChild(new DOMElement('div', 
                                 'GEEKSFORGEEKS'));
   
// Create a id attribute to div
$attr = $element->setAttributeNode(new DOMAttr('id', 
                                  'geeksforgeeks'));
   
// Set that attribute as id
$element->setIDAttribute('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.setidattribute。 PHP