DomElement- set_attribute

(no version information, might be only in CVS)

DomElement- set_attribute -- 新規属性を追加する

説明

bool DomElement- set_attribute ( string name, string value)

Sets an attribute with name name ot the given value. If the attribute does not exist, it will be created.

例 1属性を設定する

 ?php
$doc = domxml_new_doc("1.0");
$node = $doc- create_element("para");
$newnode = $doc- append_child($node);
$newnode- set_attribute("align", "left");
? 


DomElement_get_attribute() も参照する。