DOMElement->setAttribute

(no version information, might be only in CVS)

DOMElement->setAttribute -- Aggiunge un nuovo attributo

Descrizione

bool DOMElement->setAttribute ( string name, string value )

Imposta l'attributo con nome name al dato valore. Se l'attributo non esiste lo crea.

Genera un DOMExcpetion se il nodo non può essere modificato.

Esempio 1. Impostare un attributo

<?php
$doc
= new DOMDocument("1.0");
$node = $doc->createElement("para");
$newnode = $doc->appendChild($node);
$newnode->setAttribute("align", "left");
?>

Vedere anche DOMElement->getAttribute()

Hosting by: hurra.com
Generated: 2007-01-26 17:56:40