PHP - Función xmlwriter_end_pi ()
Definición y uso
XML es un lenguaje de marcado para compartir los datos a través de la web, XML es legible tanto para humanos como para máquinas. La extensión XMLWriter tiene internamente la API libxml xmlWriter y se usa para escribir / crear el contenido de un documento XML. Los documentos XML generados por esto no se almacenan en caché y solo se reenvían.
los xmlwriter_end_pi() La función acepta un objeto de la clase XMLWriter como parámetro y finaliza la etiqueta PI actual.
Sintaxis
xmlwriter_end_pi($writer);
Parámetros
No Señor | Descripción de parámetros |
---|---|
1 | writer(Mandatory) Este es un objeto de la clase XMLWriter que representa el documento XML que desea modificar / crear. |
Valores devueltos
Esta función devuelve un valor booleano que es VERDADERO en caso de éxito y FALSO en caso de falla.
Versión PHP
Esta función se introdujo por primera vez en PHP Versión 5 y funciona en todas las versiones posteriores.
Ejemplo
El siguiente ejemplo demuestra el uso de xmlwriter_end_pi() función -
<?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);
?>
Esto generará el siguiente documento XML:
<?xml version="1.0"?>
<?php echo $a;?>
<Tutorial>
<name>JavaFX</name>
<Author>Krishna</Author>
</Tutorial>
Ejemplo
A continuación se muestra el ejemplo de esta función en estilo orientado a objetos:
<?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();
?>
Esto generará el siguiente documento XML:
<?xml version="1.0"?>
<?php echo $a;?>
<Tutorial>
<name>JavaFX</name>
<Author>Krishna</Author>
</Tutorial>