DomElement->set_attribute

Adds new 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.

Example 261. Setting an attribute

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

See also domelement_get_attribute()

This HTML Help has been published using the chm2web software.