Goldenweb.it homepage

ANNUNCI | DIRECTORY | FONTS | ICONE | NEWSGROUPS | TOP25 | WALLPAPERS

English version  

Dynamical Systems & Matlab // MatLab e i Sistemi Dinamici
Descrizione dell'ambiente operativo MatLab, con riferimento al tool Simulink, per esaminare il comportamento di Sistemi Dinamici.
I migliori casino online legali
Recensione dei migliori casino online italiani sicuri, legali e certificati con licenza aams. Casinò con grandi bonus per giocare e vincere con le slot machine, i video poker e il blackjack online.

GoldenWeb.it Directory "Premium" Links - Il tuo link qui...



DOMElement->setAttribute

(no version information, might be only in CVS)

DOMElement->setAttribute -- Adds new attribute

Description

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

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

Throws DOMExcpetion if node cannot be modified.

Esempio 1. Setting an attribute

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

See also DOMElement->getAttribute()