PHP | Función DOMElement setIdAttribute()

La función DOMElement::setIdAttribute() es una función incorporada en PHP que se usa para declarar que el atributo especificado por nombre es de tipo ID.

Sintaxis:

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

Parámetros: esta función acepta dos parámetros, como se mencionó anteriormente y se describe a continuación:

  • $name: Especifica el nombre del atributo.
  • $isId: Especifica si desea que el nombre sea de tipo ID.

Valor devuelto: esta función no devuelve nada.

Excepciones: esta función arroja DOM_NO_MODIFICATION_ALLOWED_ERR, si el Node es de solo lectura o DOM_NOT_FOUND, si el nombre no es un atributo de este elemento.

Los siguientes ejemplos ilustran la función DOMElement::setIdAttribute() en PHP:

Ejemplo 1:

<?php
  
// Create a new DOM Document
$dom = new DOMDocument('1.0', 'iso-8859-1');
   
// Enable validate on parse
$dom->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();
?>

Salida: Presione Ctrl+U para ver el DOM.

Ejemplo 2:

<?php
  
// Create a new DOM Document
$dom = new DOMDocument('1.0', 'iso-8859-1');
   
// Enable validate on parse
$dom->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;
?>

Producción:

GEEKSFORGEEKS

Referencia: https://www.php.net/manual/en/domelement.setidattribute.php

Publicación traducida automáticamente

Artículo escrito por gurrrung y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *