DomElement->remove_attribute()

(No version information available, might be only in CVS)

DomElement->remove_attribute() — Removes attribute

Описание

DomElement
bool remove_attribute ( string $name )

Removes an attribute from the current DomElement node.

Список параметров

name

The name of the attribute to remove.

Возвращаемые значения

Возвращает TRUE в случае успешного завершения или FALSE в случае возникновения ошибки.

Migrating to PHP 5

Use DOMElement::removeAttribute.

[an error occurred while processing the directive]

Коментарии

<?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');
?>
2006-04-18 17:38:01
http://php5.kiev.ua/manual/ru/function.domelement-remove-attribute.html

    Поддержать сайт на родительском проекте КГБ