<?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');
?>
DomElement::remove_attribute
(PHP 4 >= 4.1.0)
DomElement::remove_attribute — 属性を削除する
パラメータ
-
name -
削除する属性名
返り値
成功した場合に TRUE を、失敗した場合に FALSE を返します。
PHP 5 への移行
DOMElement::removeAttribute を使用してください。
fpiat / bigfoot com
18-Apr-2006 02:38
