DOM XML (PHP 4) 函数
在线手册:中文 英文
PHP手册

DomElement::remove_attribute

(PHP 4 >= 4.1.0)

DomElement::remove_attribute Removes attribute

说明

bool DomElement::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.


DOM XML (PHP 4) 函数
在线手册:中文 英文
PHP手册
PHP手册 - N: Removes attribute

用户评论:

fpiat / bigfoot com (18-Apr-2006 10: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');
?>