PHP - Funzione xmlwriter_end_pi ()
Definizione e utilizzo
XML è un linguaggio di markup per condividere i dati sul Web, XML è sia leggibile dall'uomo che dalla macchina. 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.
Il xmlwriter_end_pi() funzione accetta un oggetto della classe XMLWriter come parametro e termina il tag PI corrente.
Sintassi
xmlwriter_end_pi($writer);
Parametri
Suor n | Parametro e descrizione |
---|---|
1 | writer(Mandatory) Questo è un oggetto della classe XMLWriter che rappresenta il documento XML che si desidera modificare / creare. |
Valori restituiti
Questa funzione restituisce un valore booleano che è TRUE in caso di successo e FALSE in caso di fallimento.
Versione PHP
Questa funzione è stata introdotta per la prima volta nella versione 5 di PHP e funziona in tutte le versioni successive.
Esempio
L'esempio seguente mostra l'utilizzo di xmlwriter_end_pi() funzione -
<?php
//Opening a writer
$uri = "result.xml";
$writer = xmlwriter_open_uri($uri);
//Setting the indentation on
xmlwriter_set_indent($writer, TRUE);
//Starting the document
xmlwriter_start_document($writer);
xmlwriter_set_indent_string($writer, " ");
//Starting the processing instruction
xmlwriter_start_pi($writer, 'php');
//Write the instruction content of the processing instruction
xmlwriter_text($writer, 'echo $a;');
//Ending the processing instruction
xmlwriter_end_pi($writer);
//Setting the indentation
xmlwriter_set_indent_string($writer, " ");
//Starting an element
xmlwriter_start_element($writer, 'Tutorial');
xmlwriter_start_element($writer, 'name');
//Adding text to the element
xmlwriter_text($writer, 'JavaFX');
xmlwriter_end_element($writer);
xmlwriter_start_element($writer, 'Author');
//Adding text to the element
xmlwriter_text($writer, 'Krishna');
xmlwriter_end_element($writer);
//Ending the element
xmlwriter_end_element($writer);
//Ending the document
xmlwriter_end_document($writer);
?>
Questo genererà il seguente documento XML:
<?xml version="1.0"?>
<?php echo $a;?>
<Tutorial>
<name>JavaFX</name>
<Author>Krishna</Author>
</Tutorial>
Esempio
Di seguito è riportato l'esempio di questa funzione in stile orientato agli oggetti:
<?php
//Creating an XMLWriter
$writer = new XMLWriter();
//Opening a writer
$uri = "result.xml";
$writer->openUri($uri);
//Setting the indentation on
$writer->setIndent(TRUE);
//Starting the document
$writer->startDocument();
$writer->setIndentString(" ");
//Starting the processing instruction
$writer->startPi('php');
//Write the instruction content of the processing instruction
$writer->text('echo $a;');
//Ending the processing instruction
$writer->endPi();
//Setting the indentation
$writer->setIndentString(" ");
//Starting an element
$writer->startElement('Tutorial');
$writer->startElement('name');
//Adding text to the element
$writer->text('JavaFX');
$writer->endElement();
$writer->startElement('Author');
//Adding text to the element
$writer->text('Krishna');
$writer->endElement();
//Ending the element
$writer->endElement();
//Ending the document
$writer->endDocument();
?>
Questo genererà il seguente documento XML:
<?xml version="1.0"?>
<?php echo $a;?>
<Tutorial>
<name>JavaFX</name>
<Author>Krishna</Author>
</Tutorial>