PHP - Funzioni di scrittura XML

L'estensione XMLWriter ha internamente l'API libxml xmlWriter e viene utilizzata per scrivere / creare il contenuto di un documento XML. I documenti XML generati da questo non sono memorizzati nella cache e sono solo forward.

Installazione

Questa estensione è abilitata per impostazione predefinita. La riga di comando predefinita per la disabilitazione in fase di compilazione è--disable-xml

Configurazione runtime

Questa estensione non ha direttive di configurazione definite in php.ini.

Elenco delle funzioni

PHP - indica la prima versione di PHP che supporta la funzione.

Suor n Descrizione della funzione PHP
1

xmlwriter_end_attribute

Questa funzione viene utilizzata per terminare il tag dell'attributo corrente.

5
2

xmlwriter_end_cdata

Questa funzione viene utilizzata per terminare il tag CDATA corrente.

5
3

xmlwriter_end_comment

Questa funzione viene utilizzata per terminare il tag di commento corrente.

5
4

xmlwriter_end_document

Questa funzione viene utilizzata per creare un tag di fine del documento corrente.

5
5

xmlwriter_end_dtd

Questa funzione viene utilizzata per terminare il tag DTD corrente.

5
6

xmlwriter_end_dtd_attlist

Questa funzione viene utilizzata per terminare il tag DTD AttList corrente.

5
7

xmlwriter_end_dtd_element

Questa funzione viene utilizzata per terminare il tag dell'elemento DTD corrente.

5
8

xmlwriter_end_dtd_entity

Questa funzione viene utilizzata per terminare il tag di entità DTD corrente.

5
9

xmlwriter_end_element

Questa funzione termina il tag dell'elemento corrente.

5
10

xmlwriter_end_pi

Questa funzione viene utilizzata per terminare il tag PI corrente.

5
11

xmlwriter_flush

Questa funzione viene utilizzata per svuotare il buffer corrente.

5
12

xmlwriter_full_end_element

Questa funzione viene utilizzata per terminare l'elemento corrente (anche se è vuoto).

5
13

xmlwriter_open_memory

Questa funzione viene utilizzata per creare un nuovo xmlwriter utilizzando la memoria.

5
14

xmlwriter_open_uri

Questa funzione crea un oggetto XMLWriter per il file specificato e lo restituisce.

5
15

xmlwriter_output_memory

Questa funzione restituisce il buffer corrente.

5
16

xmlwriter_set_indent

Viene utilizzato per impostare il rientro del documento XML di output su on / off.

5
17

xmlwriter_set_indent_string

Questa funzione viene utilizzata per specificare la stringa da utilizzare come rientro per il file XML di output.

5
18

xmlwriter_start_attribute

Questa funzione viene utilizzata per creare un tag di attributo iniziale.

5
19

xmlwriter_start_attribute_ns

Questa funzione viene utilizzata per creare l'inizio del tag dell'attributo namespaced.

5
20

xmlwriter_start_cdata

Questa funzione viene utilizzata per creare un tag CDATA iniziale.

5
21

xmlwriter_start_comment

Questa funzione viene utilizzata per avviare un tag di commento.

5
22

xmlwriter_start_document

Questa funzione viene utilizzata per creare un tag di inizio documento.

5
23

xmlwriter_start_dtd

Questa funzione viene utilizzata per creare un inizio del tag DTD.

5
24

xmlwriter_start_dtd_attlist

Questa funzione viene utilizzata per creare un tag di inizio della DTD AttList.

5
25

xmlwriter_start_dtd_element

Questa funzione viene utilizzata per avviare un tag di elemento DTD.

5
26

xmlwriter_start_dtd_entity

Questa funzione viene utilizzata per creare un tag di inizio entità DTD.

5
27

xmlwriter_start_element

Questa funzione viene utilizzata per creare un tag di inizio elemento.

5
28

xmlwriter_start_element_ns

Questa funzione crea un tag di inizio elemento con spazio dei nomi.

5
29

xmlwriter_start_pi

Questa funzione viene utilizzata per creare un tag PI iniziale.

5
30

xmlwriter_text

Questa funzione viene utilizzata per scrivere del testo nell'elemento corrente.

5
31

xmlwriter_write_attribute

Questa funzione viene utilizzata per creare un attributo completo.

5
32

xmlwriter_write_attribute_ns

Questa funzione viene utilizzata per creare un tag attributo con spazio dei nomi completo.

5
33

xmlwriter_write_cdata

Questa funzione viene utilizzata per creare un tag CDATA completo.

5
34

xmlwriter_write_comment

Questa funzione viene utilizzata per creare tag di commento completo.

5
35

xmlwriter_write_dtd

Questa funzione viene utilizzata per creare / scrivere un tag DTD completo.

5
36

xmlwriter_write_dtd_attlist

Questa funzione viene utilizzata per creare un tag DTD AttList completo.

5
37

xmlwriter_write_dtd_element

Questa funzione viene utilizzata per scrivere / creare un tag di elemento DTD completo.

5
38

xmlwriter_write_dtd_entity

Questa funzione viene utilizzata per creare / scrivere un tag di entità DTD completo.

5
39

xmlwriter_write_element

Questa funzione viene utilizzata per creare un tag elemento completo.

5
40

xmlwriter_write_element_ns

Questa funzione viene utilizzata per creare un tag di elemento con spazio dei nomi completo.

5
41

xmlwriter_write_pi

Questa funzione viene utilizzata per creare tag PI completo.

5
42

xmlwriter_write_raw

Questa funzione viene utilizzata per scrivere un testo XML non elaborato.

5