DOMElement->removeAttribute()

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

DOMElement->removeAttribute() — Removes attribute

Descrição

DOMElement
bool removeAttribute ( string $name )

Removes attribute named name from the element.

Parâmetros

name

The name of the attribute.

Valor Retornado

Retorna TRUE em caso de sucesso ou FALSE em falhas.

Erros

DOM_NO_MODIFICATION_ALLOWED_ERR

Raised if the node is readonly.



User Contributed Notes
DOMElement->removeAttribute()
saltymeat at hotmail dot com
23-Feb-2007 12:32
It appears that autogenerated xmlns attributes cannot be removed. Attempting to use <?php $node->removeAttribute("xmlns"); ?> returns false.