diff --git a/reference/dom/functions/dom-domattr-construct.xml b/reference/dom/functions/dom-domattr-construct.xml
deleted file mode 100644
index 27a776660..000000000
--- a/reference/dom/functions/dom-domattr-construct.xml
+++ /dev/null
@@ -1,99 +0,0 @@
-
-
-
-
- DOMAttr->__construct()
-
- Crea un nuovo oggetto DOMAttr
-
-
-
- &reftitle.description;
-
- DOMAttr
-
- __construct
- stringname
- stringvalue
-
-
-
- Crea un nuovo oggetto DOMAttr. Questo oggetto è in sola lettura.
- Può essere aggiunto al documento, ma non vi possono essere aggiunti nodi fino a quando
- .
-
-
-
- &reftitle.parameters;
-
-
-
- name
-
-
- Nome tag dell'attributo-
- The tag name of the attribute.
-
-
-
-
- value
-
-
- Valore dell'attributo.
-
-
-
-
-
-
-
- &reftitle.examples;
-
-
- Esempio di creazione di un nuovo DOMAttr
-
-appendChild(new DOMElement('root'));
-$attr = $element->setAttributeNode(new DOMAttr('attr', 'attrvalue'));
-echo $dom->saveXML(); /* */
-
-?>
-]]>
-
-
-
-
-
- &reftitle.seealso;
-
-
-
-
-
-
-
-
-
diff --git a/reference/dom/functions/dom-domattr-isid.xml b/reference/dom/functions/dom-domattr-isid.xml
deleted file mode 100644
index f1a992480..000000000
--- a/reference/dom/functions/dom-domattr-isid.xml
+++ /dev/null
@@ -1,82 +0,0 @@
-
-
-
-
- DOMAttr->isId()
-
- Verifica se l'attributo è un ID definito
-
-
-
- &reftitle.description;
-
- DOMAttr
-
- boolisId
-
-
-
-
- Questa funzione verifica se l'attributo sia un ID definito.
-
-
- In base allo standard DOM, questa funzione riochiede la presenza di una DTD che definisca
- l'attributo ID di tipo ID. Occorre validare il documento con
-
- oppure DOMDocument::validateOnParse prima di utilizzare questa funzione.
-
-
-
- &reftitle.returnvalues;
-
- &return.success;
-
-
-
- &reftitle.examples;
-
-
- DOMAttr->isId() Example
-
-validateOnParse = true;
-$doc->Load('book.xml');
-
-// Recuperiamo l'attributo chianat id del capitolo documento
-$attr = $doc->getElementsByTagName('chapter')->item(0)->getAttributeNode('id');
-
-var_dump($attr->isId()); // bool(true)
-
-?>
-]]>
-
-
-
-
-
-
-
diff --git a/reference/dom/functions/dom-domcharacterdata-appenddata.xml b/reference/dom/functions/dom-domcharacterdata-appenddata.xml
deleted file mode 100644
index b09cd57b4..000000000
--- a/reference/dom/functions/dom-domcharacterdata-appenddata.xml
+++ /dev/null
@@ -1,76 +0,0 @@
-
-
-
-
- DOMCharacterData->appendData()
-
- Aggiunge una stringa alla fine del testo di un nodo
-
-
-
- &reftitle.description;
-
- DOMCharacterData
-
- voidappendData
- stringdata
-
-
-
- Aggiunge la stringa data alla fine dei dati del nodo.
-
-
-
- &reftitle.parameters;
-
-
-
- data
-
-
- La stringa da aggiungere.
-
-
-
-
-
-
-
- &reftitle.returnvalues;
-
- &return.void;
-
-
-
- &reftitle.seealso;
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/reference/dom/functions/dom-domcharacterdata-deletedata.xml b/reference/dom/functions/dom-domcharacterdata-deletedata.xml
deleted file mode 100644
index 218b8301b..000000000
--- a/reference/dom/functions/dom-domcharacterdata-deletedata.xml
+++ /dev/null
@@ -1,105 +0,0 @@
-
-
-
-
- DOMCharacterData->deleteData()
-
- Rimuove un range di caratteri da un nodo
-
-
-
- &reftitle.description;
-
- DOMCharacterData
-
- voiddeleteData
- intoffset
- intcount
-
-
-
- Rimuove un numero di caratteri pari a count a partire dalla posizione
- offset.
-
-
-
- &reftitle.parameters;
-
-
-
- offset
-
-
- Offset da cui partire a rimuovere.
-
-
-
-
- count
-
-
- Il numero di caratteri da rimuovere. Se la somma di
- offset e count eccede la
- lunghezza del testo, saranno cancellati tutti i caratteri fino alla fine.
-
-
-
-
-
-
-
- &reftitle.returnvalues;
-
- &return.void;
-
-
-
- &reftitle.exceptions;
-
-
-
- DOM_INDEX_SIZE_ERR
-
-
- Eccezione generata se offset è negativo oppure più grande di un
- numero di 16 bit, oppure se count è
- negativo.
-
-
-
-
-
-
-
- &reftitle.seealso;
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/reference/dom/functions/dom-domcharacterdata-insertdata.xml b/reference/dom/functions/dom-domcharacterdata-insertdata.xml
deleted file mode 100644
index a6ba713f8..000000000
--- a/reference/dom/functions/dom-domcharacterdata-insertdata.xml
+++ /dev/null
@@ -1,101 +0,0 @@
-
-
-
-
- DOMCharacterData->insertData()
-
- Inserisce una stringa all'offset di 16 bit indicato
-
-
-
- &reftitle.description;
-
- DOMCharacterData
-
- voidinsertData
- intoffset
- stringdata
-
-
-
- Inserisce la stringa data alla posizione offset.
-
-
-
- &reftitle.parameters;
-
-
-
- offset
-
-
- L'offset del carattere da cui cominciare ad inserire.
-
-
-
-
- data
-
-
- La stringa da inserire.
-
-
-
-
-
-
-
- &reftitle.returnvalues;
-
- &return.void;
-
-
-
- &reftitle.exceptions;
-
-
-
- DOM_INDEX_SIZE_ERR
-
-
- Generato se offset è negativo o se è maggiore di un
- numero di 16 bit.
-
-
-
-
-
-
-
- &reftitle.seealso;
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/reference/dom/functions/dom-domcharacterdata-replacedata.xml b/reference/dom/functions/dom-domcharacterdata-replacedata.xml
deleted file mode 100644
index de00fd6d3..000000000
--- a/reference/dom/functions/dom-domcharacterdata-replacedata.xml
+++ /dev/null
@@ -1,114 +0,0 @@
-
-
-
-
- DOMCharacterData->replaceData()
-
- Sostituisce una stringa all'interno di un nodo DOMCharacterData
-
-
-
- &reftitle.description;
-
- DOMCharacterData
-
- voidreplaceData
- intoffset
- intcount
- stringdata
-
-
-
- Sostituisce count caratteri a partire dalla posizione
- offset con data.
-
-
-
- &reftitle.parameters;
-
-
-
- offset
-
-
- Offset da cui iniziare la sostituzione.
-
-
-
-
- count
-
-
- Numero di caratteri da sostituire. Se la somma di
- offset e count eccede
- la lunghezza, allora saranno sostituiti tutti i caratteri fino alla fine.
-
-
-
-
- data
-
-
- La stringa con cui sostituire i caratteri del range indicato.
-
-
-
-
-
-
-
- &reftitle.returnvalues;
-
- &return.void;
-
-
-
- &reftitle.exceptions;
-
-
-
- DOM_INDEX_SIZE_ERR
-
-
- Generato se offset è negativo o maggiore di un
- numero di 16 bit, oppure se count è
- negativo.
-
-
-
-
-
-
-
- &reftitle.seealso;
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/reference/dom/functions/dom-domcharacterdata-substringdata.xml b/reference/dom/functions/dom-domcharacterdata-substringdata.xml
deleted file mode 100644
index 20ba36b89..000000000
--- a/reference/dom/functions/dom-domcharacterdata-substringdata.xml
+++ /dev/null
@@ -1,104 +0,0 @@
-
-
-
-
- DOMCharacterData->substringData()
-
- Estrae un tange di dati da un nodo
-
-
-
- &reftitle.description;
-
- DOMCharacterData
-
- stringsubstringData
- intoffset
- intcount
-
-
-
- Restituisce la stringa richiesta.
-
-
-
- &reftitle.parameters;
-
-
-
- offset
-
-
- Offset di partenza della stringa richiesta.
-
-
-
-
- count
-
-
- Numero di caratteri da estrarre.
-
-
-
-
-
-
-
- &reftitle.returnvalues;
-
- La stringa richiesta. Se la somma di offset
- e count supera in lunghezza i dati del nodo, considerati tutti a 16 bit,
- viengono restituiti tutti i dati fino alla fine.
-
-
-
- &reftitle.exceptions;
-
-
-
- DOM_INDEX_SIZE_ERR
-
-
- Generato se offset è negativo o maggiore di un
- numero di 16 bit, oppure se count è
- negativo.
-
-
-
-
-
-
-
- &reftitle.seealso;
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/reference/dom/functions/dom-domcomment-construct.xml b/reference/dom/functions/dom-domcomment-construct.xml
deleted file mode 100644
index cac2ac722..000000000
--- a/reference/dom/functions/dom-domcomment-construct.xml
+++ /dev/null
@@ -1,90 +0,0 @@
-
-
-
-
- DOMComment->__construct()
-
- Crea un nuovo oggetto DOMComment
-
-
-
- &reftitle.description;
-
- DOMComment
-
- __construct
- stringvalue
-
-
-
- Crea un nuovo oggetto DOMComment. Questo oggetto è in sola lettura.
- Può essere aggiunto ad un documento, ma non si possono inserire nodi aggiuntivi a questo nodo sino
- a quando il nodo è associato al docuemnto. Per creare un modo modificabile utilizzare
- .
-
-
-
- &reftitle.parameters;
-
-
-
- value
-
-
- Il testo del commento.
-
-
-
-
-
-
-
- &reftitle.examples;
-
-
- Esempio di creazione di un nuovo DOMComment
-
-appendChild(new DOMElement('root'));
-$comment = $element->appendChild(new DOMComment('root comment'));
-echo $dom->saveXML(); /* */
-
-?>
-]]>
-
-
-
-
-
- &reftitle.seealso;
-
-
-
-
-
-
-
-
-
diff --git a/reference/dom/functions/dom-domdocument-construct.xml b/reference/dom/functions/dom-domdocument-construct.xml
deleted file mode 100644
index 18ea9f820..000000000
--- a/reference/dom/functions/dom-domdocument-construct.xml
+++ /dev/null
@@ -1,95 +0,0 @@
-
-
-
-
- DOMDocument->__construct()
-
- Crea un nuovo oggetto DOMDocument
-
-
-
- &reftitle.description;
-
- DOMDocument
-
- __construct
- stringversion
- stringencoding
-
-
-
- Crea un nuovo oggetto DOMDocument.
-
-
-
- &reftitle.parameters;
-
-
-
- version
-
-
- Numero di versione del documento come parte della dichiarazione XML.
-
-
-
-
- encoding
-
-
- Codifica del docuemnto utilizzata nella dichisrazione XML.
-
-
-
-
-
-
-
- &reftitle.examples;
-
-
- Esempio di creazione di un nuovo DOMDocument
-
-saveXML(); /* */
-
-?>
-]]>
-
-
-
-
-
- &reftitle.seealso;
-
-
-
-
-
-
-
-
-
diff --git a/reference/dom/functions/dom-domdocument-createattribute.xml b/reference/dom/functions/dom-domdocument-createattribute.xml
deleted file mode 100644
index a2e57f522..000000000
--- a/reference/dom/functions/dom-domdocument-createattribute.xml
+++ /dev/null
@@ -1,96 +0,0 @@
-
-
-
-
- DOMDocument->createAttribute()
- Crea un nuovo attributo
-
-
- &reftitle.description;
-
- DOMDocument
-
- DOMAttrcreateAttribute
- stringname
-
-
-
- Questa funzione crea una nuova istanza della classe DOMAttr.
- &dom.node.inserted;
-
-
-
- &reftitle.parameters;
-
-
-
- name
-
-
- Nome dell'attributo.
-
-
-
-
-
-
-
- &reftitle.returnvalues;
-
- La nuova istanza di DOMAttr oppure &false; se si verifica un errore.
-
-
-
- &reftitle.exceptions;
-
-
-
- DOM_INVALID_CHARACTER_ERR
-
-
- Generato se name contiene caratteri non validi.
-
-
-
-
-
-
-
- &reftitle.seealso;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/reference/dom/functions/dom-domdocument-createattributens.xml b/reference/dom/functions/dom-domdocument-createattributens.xml
deleted file mode 100644
index 09f079d15..000000000
--- a/reference/dom/functions/dom-domdocument-createattributens.xml
+++ /dev/null
@@ -1,117 +0,0 @@
-
-
-
-
- DOMDocument->createAttributeNS()
-
- Crea un nuovo nodo attributo con associato lo spazio dei nomi
-
-
-
- &reftitle.description;
-
- DOMDocument
-
- DOMAttrcreateAttributeNS
- stringnamespaceURI
- stringqualifiedName
-
-
-
- Questa funzione crea una nuova istanza della classe
- DOMAttr. &dom.node.inserted;
-
-
-
- &reftitle.parameters;
-
-
-
- namespaceURI
-
-
- L' URI dello spazio dei nomi.
-
-
-
-
- qualifiedName
-
-
- Il nome del tag e prefisso dell'attributo nella struttura prefix:tagname.
-
-
-
-
-
-
-
- &reftitle.returnvalues;
-
- La nuova istanza di DOMAttr oppure &false; se si verifica un errore.
-
-
-
- &reftitle.exceptions;
-
-
-
- DOM_INVALID_CHARACTER_ERR
-
-
- Generato se qualifiedName contiene carattei non validi.
-
-
-
-
- DOM_NAMESPACE_ERR
-
-
- Generato se qualifiedName se è un nome malformato,
- oppure se qualifiedName ha un prefisso e
- namespaceURI vale &null;.
-
-
-
-
-
-
-
- &reftitle.seealso;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/reference/dom/functions/dom-domdocument-createcdatasection.xml b/reference/dom/functions/dom-domdocument-createcdatasection.xml
deleted file mode 100644
index facc2a27d..000000000
--- a/reference/dom/functions/dom-domdocument-createcdatasection.xml
+++ /dev/null
@@ -1,81 +0,0 @@
-
-
-
-
- DOMDocument->createCDATASection()
- Crea un nuovo nodo cdata
-
-
- &reftitle.description;
-
- DOMDocument
-
- DOMCDATASectioncreateCDATASection
- stringdata
-
-
-
- Questa funzione crea una nuova istanza della classe
- DOMCDATASection. &dom.node.inserted;
-
-
-
- &reftitle.parameters;
-
-
-
- data
-
-
- Contenuto del nodo cdata.
-
-
-
-
-
-
-
- &reftitle.returnvalues;
-
- Una nuova istanza di DOMCDATASection oppure &false; in caso di errore.
-
-
-
- &reftitle.seealso;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/reference/dom/functions/dom-domdocument-createcomment.xml b/reference/dom/functions/dom-domdocument-createcomment.xml
deleted file mode 100644
index 7ea586b4e..000000000
--- a/reference/dom/functions/dom-domdocument-createcomment.xml
+++ /dev/null
@@ -1,81 +0,0 @@
-
-
-
-
- DOMDocument->createComment()
- Crea un nuovo nodo di commento
-
-
- &reftitle.description;
-
- DOMDocument
-
- DOMCommentcreateComment
- stringdata
-
-
-
- Questa funzione crea una nuova istanza della classe
- DOMComment. &dom.node.inserted;
-
-
-
- &reftitle.parameters;
-
-
-
- data
-
-
- Il contenuto del commento.
-
-
-
-
-
-
-
- &reftitle.returnvalues;
-
- Una istanza di DOMComment oppure &false; in caso di errore.
-
-
-
- &reftitle.seealso;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/reference/dom/functions/dom-domdocument-createdocumentfragment.xml b/reference/dom/functions/dom-domdocument-createdocumentfragment.xml
deleted file mode 100644
index 501408c44..000000000
--- a/reference/dom/functions/dom-domdocument-createdocumentfragment.xml
+++ /dev/null
@@ -1,65 +0,0 @@
-
-
-
-
- DOMDocument->createDocumentFragment()
- Crea un nuovo frammento di documento
-
-
- &reftitle.description;
-
- DOMDocument
-
- DOMDocumentFragmentcreateDocumentFragment
-
-
-
-
- Questa funzione crea una nuova istanza della classe
- DOMDocumentFragment. &dom.node.inserted;
-
-
-
- &reftitle.returnvalues;
-
- L'istanza DOMDocumentFragment oppure &false; in caso di errore.
-
-
- &reftitle.seealso;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/reference/dom/functions/dom-domdocument-createelement.xml b/reference/dom/functions/dom-domdocument-createelement.xml
deleted file mode 100644
index e6c793e92..000000000
--- a/reference/dom/functions/dom-domdocument-createelement.xml
+++ /dev/null
@@ -1,137 +0,0 @@
-
-
-
-
- DOMDocument->createElement()
- Crea un nuovo nodo elemento
-
-
- &reftitle.description;
-
- DOMDocument
-
- DOMElementcreateElement
- stringname
- stringvalue
-
-
-
- Questa funzione crea una nuova istanza della classe
- DOMElement. &dom.node.inserted;
-
-
-
- &reftitle.parameters;
-
-
-
- name
-
-
- Il nome del tag dell'elemento.
-
-
-
-
- value
-
-
- Il valore dell'elemento. Per default si crea un elemento vuoto.
- Il valore può essere impostato in un secondo momento tramite DOMElement->nodeValue.
-
-
-
-
-
-
-
- &reftitle.returnvalues;
-
- Restituisce una nuova istanza della classe DOMElement
- oppure &false; in caso di errore.
-
-
-
- &reftitle.exceptions;
-
-
-
- DOM_INVALID_CHARACTER_ERR
-
-
- Generato se name contiene caratteri invalidi.
-
-
-
-
-
-
-
- &reftitle.examples;
-
-
- Esempio di creazione di un nuovo elemento ed inserimento nel documento come root
-
-createElement('test', 'This is the root element!');
-
-// inserimento dell'elemento come root (figlio del nodo documento)
-$dom->appendChild($element);
-
-echo $dom->saveXML();
-?>
-]]>
-
- &example.outputs;
-
-
-This is the root element!
-]]>
-
-
-
-
-
- &reftitle.seealso;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/reference/dom/functions/dom-domdocument-createelementns.xml b/reference/dom/functions/dom-domdocument-createelementns.xml
deleted file mode 100644
index 8fec8a0f2..000000000
--- a/reference/dom/functions/dom-domdocument-createelementns.xml
+++ /dev/null
@@ -1,156 +0,0 @@
-
-
-
-
- DOMDocument->createElementNS()
-
- Crea un nuovo nodo elemento con associato lo spazio dei nomi
-
-
-
- &reftitle.description;
-
- DOMDocument
-
- DOMElementcreateElementNS
- stringnamespaceURI
- stringqualifiedName
- stringvalue
-
-
-
- Questa funzione crea un nuovo nodo elemento con associato lo spazio dei nomi.
- &dom.node.inserted;
-
-
-
- &reftitle.parameters;
-
-
-
- namespaceURI
-
-
- L' URI dello spazio dei nomi.
-
-
-
-
- qualifiedName
-
-
- Un nuome qualificato pe l'elemento del tipo prefix:tagname.
-
-
-
-
- value
-
-
- Il valore dell'elemento. Per default si crea un elemento vuoto.
- Il valore può essere impostato in un secondo momento tramite DOMElement->nodeValue.
-
-
-
-
-
-
-
- &reftitle.returnvalues;
-
- L'istanza DOMElement oppure &false; in caso di errore.
-
-
-
- &reftitle.exceptions;
-
-
-
- DOM_INVALID_CHARACTER_ERR
-
-
- Generato se qualifiedName contiene caratteri non validi.
-
-
-
-
- DOM_NAMESPACE_ERR
-
-
- Generato se qualifiedName se è un nome qualificato
- invalido.
-
-
-
-
-
-
-
- &reftitle.examples;
-
-
- Esempio di creazione di un nuovo elemento ed inserimento nel documento come root
-
-createElementNS('http://www.example.com/XFoo', 'xfoo:test', 'This is the root element!');
-
-// inserimento dell'elemento come root (figlio del nodo documento)
-$dom->appendChild($element);
-
-echo $dom->saveXML();
-?>
-]]>
-
- &example.outputs;
-
-
-This is the root element!
-]]>
-
-
-
-
-
- &reftitle.seealso;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/reference/dom/functions/dom-domdocument-createentityreference.xml b/reference/dom/functions/dom-domdocument-createentityreference.xml
deleted file mode 100644
index feeab4446..000000000
--- a/reference/dom/functions/dom-domdocument-createentityreference.xml
+++ /dev/null
@@ -1,98 +0,0 @@
-
-
-
-
- DOMDocument->createEntityReference()
- Crea un nuovo nodo riferimento ad entità
-
-
- &reftitle.description;
-
- DOMDocument
-
- DOMEntityReferencecreateEntityReference
- stringname
-
-
-
- Questa funzione crea una nuova istanza della classe
- DOMEntityReference. &dom.node.inserted;
-
-
-
- &reftitle.parameters;
-
-
-
- name
-
-
- Il contenuto del riferimento all'entità, ad esempio il riferimento all'entità meno
- & iniziale e
- ; finale.
-
-
-
-
-
-
-
- &reftitle.returnvalues;
-
- Il nuovo DOMEntityReference oppure &false; in caso di errore.
-
-
-
- &reftitle.exceptions;
-
-
-
- DOM_INVALID_CHARACTER_ERR
-
-
- Generato se name contiene caratteri non validi.
-
-
-
-
-
-
-
- &reftitle.seealso;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/reference/dom/functions/dom-domdocument-createprocessinginstruction.xml b/reference/dom/functions/dom-domdocument-createprocessinginstruction.xml
deleted file mode 100644
index f7ca798f3..000000000
--- a/reference/dom/functions/dom-domdocument-createprocessinginstruction.xml
+++ /dev/null
@@ -1,105 +0,0 @@
-
-
-
-
- DOMDocument->createProcessingInstruction()
- Crea un nuovo nodo PI
-
-
- &reftitle.description;
-
- DOMDocument
-
- DOMProcessingInstructioncreateProcessingInstruction
- stringtarget
- stringdata
-
-
-
- Questa funzione crea una nuova istanza della classe
- DOMProcessingInstruction. &dom.node.inserted;
-
-
-
- &reftitle.parameters;
-
-
-
- target
-
-
- Il target delle itrsuzioni di processamento.
-
-
-
-
- data
-
-
- Il contenuto della PI.
-
-
-
-
-
-
-
- &reftitle.returnvalues;
-
- La nuova istanza di DOMProcessingInstruction oppure &false; in caso di errore.
-
-
-
- &reftitle.exceptions;
-
-
-
- DOM_INVALID_CHARACTER_ERR
-
-
- Generato se target contiene caratteri non validi.
-
-
-
-
-
-
-
- &reftitle.seealso;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/reference/dom/functions/dom-domdocument-createtextnode.xml b/reference/dom/functions/dom-domdocument-createtextnode.xml
deleted file mode 100644
index 48bf7dcbe..000000000
--- a/reference/dom/functions/dom-domdocument-createtextnode.xml
+++ /dev/null
@@ -1,81 +0,0 @@
-
-
-
-
- DOMDocument->createTextNode()
- Crea un nuovo nodo di testo
-
-
- &reftitle.description;
-
- DOMDocument
-
- DOMTextcreateTextNode
- stringcontent
-
-
-
- Questa funzione crea una nuova istanza della classe
- DOMText. &dom.node.inserted;
-
-
-
- &reftitle.parameters;
-
-
-
- content
-
-
- Il contenuto del testo.
-
-
-
-
-
-
-
- &reftitle.returnvalues;
-
- La nuova istanza di DOMText oppure &false; in caso di errore.
-
-
-
- &reftitle.seealso;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/reference/dom/functions/dom-domdocument-getelementbyid.xml b/reference/dom/functions/dom-domdocument-getelementbyid.xml
deleted file mode 100644
index 3e36ade70..000000000
--- a/reference/dom/functions/dom-domdocument-getelementbyid.xml
+++ /dev/null
@@ -1,107 +0,0 @@
-
-
-
-
- DOMDocument->getElementById()
- Cerca un elemento con un certo id
-
-
- &reftitle.description;
-
- DOMDocument
-
- DOMElementgetElementById
- stringelementId
-
-
-
- Questa funzione è simile a
- , ma cerca
- un elemento per il dato id.
-
-
- In base allo standard DOM, questa funzione riochiede la presenza di una DTD che definisca
- l'attributo ID di tipo ID. Occorre validare il documento con
-
- oppure DOMDocument->validateOnParse prima di utilizzare questa funzione.
-
-
-
- &reftitle.parameters;
-
-
-
- elementId
-
-
- Il valore dell'id univoco per le'elemento.
-
-
-
-
-
-
-
- &reftitle.returnvalues;
-
- Restituisce DOMElement oppure &null; se l'elemento non
- è trovato.
-
-
-
- &reftitle.examples;
-
- Esempio di uso di DOMDocument->getElementById()
-
-validateOnParse = true;
-$doc->Load('book.xml');
-
-echo "The element whose id is books is: " . $doc->getElementById('books')->tagName . "\n";
-
-?>
-]]>
-
- &example.outputs;
-
-
-
-
-
-
- &reftitle.seealso;
-
-
-
-
-
-
-
-
-
diff --git a/reference/dom/functions/dom-domdocument-getelementsbytagname.xml b/reference/dom/functions/dom-domdocument-getelementsbytagname.xml
deleted file mode 100644
index a6652d39a..000000000
--- a/reference/dom/functions/dom-domdocument-getelementsbytagname.xml
+++ /dev/null
@@ -1,75 +0,0 @@
-
-
-
-
- DOMDocument->getElementsByTagName()
- Cerca tutti gli eleemnti per un dato nome di tag
-
-
- &reftitle.description;
-
- DOMDocument
-
- DOMNodeListgetElementsByTagName
- stringname
-
-
-
- Questa funzione crea una nuova istanza della classe
- DOMNodeList contenente gli elementi con il
- nome tag cercato.
-
-
-
- &reftitle.parameters;
-
-
-
- name
-
-
- Il nome del tag da cercare. Il valore spaciale *
- indica tutti i tag.
-
-
-
-
-
-
-
- &reftitle.returnvalues;
-
- Una nuova istanza dell'oggetto DOMNodeList contenente tutti gli elementi
- trovati.
-
-
-
- &reftitle.seealso;
-
-
-
-
-
-
-
-
-
diff --git a/reference/dom/functions/dom-domdocument-getelementsbytagnamens.xml b/reference/dom/functions/dom-domdocument-getelementsbytagnamens.xml
deleted file mode 100644
index 750185a9d..000000000
--- a/reference/dom/functions/dom-domdocument-getelementsbytagnamens.xml
+++ /dev/null
@@ -1,132 +0,0 @@
-
-
-
-
- DOMDocument->getElementsByTagNameNS()
-
- Ricerca tutti gli elementi per un dato nome tag nello spazio dei nomi indicato.
-
-
-
- &reftitle.description;
-
- DOMDocument
-
- DOMNodeListgetElementsByTagNameNS
- stringnamespaceURI
- stringlocalName
-
-
-
- Restituicse un DOMNodeList contenente tutti gli elementi
- con il nome e lo spazio dei nomi indicati.
-
-
-
- &reftitle.parameters;
-
-
-
- namespaceURI
-
-
- L' URI dello spazio dei nomi degli elementi da cercare.
- Il valore speciale * indica tutti.
-
-
-
-
- localName
-
-
- Il nome locale degli elementi da cercare.
- Il valore speciale * indica tutti.
-
-
-
-
-
-
-
- &reftitle.returnvalues;
-
- Un nuovo oggetto DOMNodeList contenente tutti gli
- elementi trovati.
-
-
-
- &reftitle.examples;
-
-
- Ottienet tutti gli elementi XInclude
-
-
-
-Books of the other guy..
-
-
-
- xinclude: book.xml not found
-
-
-
- This is another namespace
-
-
-
-EOD;
-$dom = new DOMDocument;
-
-// Carica la stringa definita in precedenza
-$dom->loadXML($xml);
-
-foreach ($dom->getElementsByTagNameNS('http://www.w3.org/2001/XInclude', '*') as $element) {
- echo 'local name: ', $element->localName, ', prefix: ', $element->prefix, "\n";
-}
-?>
-]]>
-
- &example.outputs;
-
-
-
-
-
-
-
- &reftitle.seealso;
-
-
-
-
-
-
-
-
-
diff --git a/reference/dom/functions/dom-domdocument-importnode.xml b/reference/dom/functions/dom-domdocument-importnode.xml
deleted file mode 100644
index 1e28b07a9..000000000
--- a/reference/dom/functions/dom-domdocument-importnode.xml
+++ /dev/null
@@ -1,80 +0,0 @@
-
-
-
-
- DOMDocument->importNode()
- Importa un nodo nel documento corrente
-
-
- &reftitle.description;
-
- DOMDocument
-
- DOMNodeimportNode
- DOMNodeimportedNode
- booldeep
-
-
-
- Questa funzione restituisce una copia del nodo da importare e lo associa
- al documento corrente.
-
-
-
- &reftitle.parameters;
-
-
-
- importedNode
-
-
- Il nodo da importare.
-
-
-
-
- deep
-
-
- Se impostato a &true;, questo metodo importerà in modo ricorsivo il sotto-albero di
- importedNode.
-
-
-
-
-
-
-
- &reftitle.returnvalues;
-
- Il nodo copiato.
-
-
-
- &reftitle.exceptions;
-
- DOMException è generato se il nodo non può essere importato.
-
-
-
-
-
diff --git a/reference/dom/functions/dom-domdocument-load.xml b/reference/dom/functions/dom-domdocument-load.xml
deleted file mode 100644
index 2b5cefc24..000000000
--- a/reference/dom/functions/dom-domdocument-load.xml
+++ /dev/null
@@ -1,101 +0,0 @@
-
-
-
-
- DOMDocument->load()
-
- Carica un documento XML da un file
-
-
-
- &reftitle.description;
-
- DOMDocument
-
- boolload
- stringfilename
-
-
-
- Carica un documento XML da un file.
-
-
- Questo metodo può essere richiamato staticamente per caricare e creare un oggetto
- DOMDocument. L'inbvocazione statica può essere utilizzata
- quando non occorre impostare le proprietà di DOMDocument
- prima del caricamento.
-
-
-
- &reftitle.parameters;
-
-
-
- filename
-
-
- Il percorso al documento XML.
-
-
-
-
-
-
-
- &reftitle.returnvalues;
-
- &return.success;
-
-
-
- &reftitle.examples;
-
-
- Creazione di un documento
-
-saveXML();
-
-$doc = new DOMDocument();
-$doc->load('book.xml');
-echo $doc->saveXML();
-?>
-]]>
-
-
-
-
-
- &reftitle.seealso;
-
-
-
-
-
-
-
-
-
-
-
diff --git a/reference/dom/functions/dom-domdocument-loadhtml.xml b/reference/dom/functions/dom-domdocument-loadhtml.xml
deleted file mode 100644
index 80c348253..000000000
--- a/reference/dom/functions/dom-domdocument-loadhtml.xml
+++ /dev/null
@@ -1,100 +0,0 @@
-
-
-
-
- DOMDocument->loadHTML()
-
- Carica una pagina HTML da una stringa
-
-
-
- &reftitle.description;
-
- DOMDocument
-
- boolloadHTML
- stringsource
-
-
-
- La funzione esegue il parsing di una pagina HTML contenuta nella stringa source.
- A differenza del carico di un documento XML, il documento HTML non deve essere ben formato per potere essere caricato.
- Questa funzione può essere richiamata staticamente per caricare e creare un oggetto
- DOMDocument. L'invocazione statica può essere utilizzata
- quando non debbano essere impostate proprietà per DOMDocument
- prima del caricamento.
-
-
-
- &reftitle.parameters;
-
-
-
- source
-
-
- La stringa HTML.
-
-
-
-
-
-
-
- &reftitle.returnvalues;
-
- &return.success;
-
-
-
- &reftitle.examples;
-
-
- Creazione di un documento
-
-Test