PHP Doku:: Removes attribute - function.domelement-remove-attribute.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzXML-ManipulationDOM-XMLDOM-XML-FunktionenDomElement->remove_attribute

Ein Service von Reinhard Neidl - Webprogrammierung.

DOM-XML-Funktionen

<<DomElement->has_attribute

DomElement->set_attribute_node>>

DomElement->remove_attribute

(PHP 4 >= 4.1.0)

DomElement->remove_attribute Removes attribute

Beschreibung

bool DomElement::remove_attribute ( string $name )

Removes an attribute from the current DomElement node.

Parameter-Liste

name

The name of the attribute to remove.

Rückgabewerte

Gibt bei Erfolg TRUE zurück. Im Fehlerfall wird FALSE zurückgegeben.

Migrating to PHP 5

Use DOMElement::removeAttribute.


Ein BenutzerBeitrag:
- Beiträge aktualisieren...
fpiat / bigfoot com
18.04.2006 23:38
<?php
/* Remove all attribute from a node */
foreach ($node->attributes() as $attr)
       
$node->remove_attribute($attr);
/* Then rename that tag */
$node->set_name('div');
/* And set appropriate "class" attribute */
$node->set_attribute('class','paragraphBox');
?>



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)