<?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
(No version information available, might be only in CVS)
DomElement->remove_attribute — 属性を削除する
パラメータ
- name
-
削除する属性名
返り値
成功した場合に TRUE を、失敗した場合に FALSE を返します。
PHP 5 への移行
DOMElement::removeAttribute を使用してください。
DomElement->remove_attribute
fpiat / bigfoot com
19-Apr-2006 06:38
19-Apr-2006 06:38
