La función DOMElement::removeAttribute() es una función incorporada en PHP que se usa para eliminar un atributo con un nombre específico del elemento.
Sintaxis:
bool DOMElement::removeAttribute( string $name )
Parámetros: esta función acepta un único parámetro $nombre que contiene el nombre del atributo.
Valor de retorno: esta función devuelve VERDADERO en caso de éxito o FALSO en caso de error.
Excepciones: esta función arroja DOM_NO_MODIFICATION_ALLOWED_ERR, si el Node es de solo lectura.
Los siguientes ejemplos ilustran la función DOMElement::removeAttribute() en PHP:
Ejemplo 1:
<?php // Create a new DOMDocument $dom = new DOMDocument(); // Load the XML $dom->loadXML("<?xml version=\"1.0\"?> <root> <html> <h1 id=\"my_id\"> Geeksforgeeks </h1> <h2> Second heading </h2> </html> </root>"); // Get the elements $node = $dom->getElementsByTagName('h1')[0]; echo "Before the removal of attributes: <br>"; // Get the attribute name and value $attribute = $node->attributes->item(0); $attribute_name = $attribute->name; $attribute_value = $attribute->value; echo $attribute_name . ' => '; echo $attribute_value; // Remove the id attribute $node->removeAttribute('id'); echo "<br>After the removal of attributes: <br>"; // Get the attribute name and value $attribute = $node->attributes->item(0); $attribute_name = $attribute->name . ' => '; $attribute_value = $attribute->value; echo $attribute_name; echo $attribute_value; ?>
Producción:
Before the removal of attributes: id => my_id After the removal of attributes: => // Empty value means attribute is removed
Ejemplo 2:
<?php // Create a new DOMDocument $dom = new DOMDocument(); // Load the XML $dom->loadXML("<?xml version=\"1.0\"?> <root> <html> <h1 id=\"my_id\" style=\"color:green;\" class=\"my_class\"> Geeksforgeeks </h1> <h2> Second heading </h2> </html> </root>"); // Get the elements $node = $dom->getElementsByTagName('h1')[0]; echo "Before the removal of attributes: <br>"; // Get the attribute count $attributeCount = $node->attributes->count(); echo 'No of attributes => ' . $attributeCount; // Remove the id attribute $node->removeAttribute('id'); echo "<br>After the removal of attributes: <br>"; // Get the attribute count $attributeCount = $node->attributes->count(); echo 'No of attributes => ' . $attributeCount; ?>
Producción:
Before the removal of attributes: No of attributes => 3 After the removal of attributes: No of attributes => 2
Referencia: https://www.php.net/manual/en/domelement.removeattribute.php