PHP - Función xmlwriter_flush ()
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_flush() La función acepta un objeto de la clase XMLWriter como parámetro y vacía el búfer actual.
Sintaxis
xmlwriter_flush($xmlwriter, $bool);
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. |
2 | bool(Optional) Este es un valor booleano que especifica si vaciar el búfer o no. |
Valores devueltos
Esta función devuelve un búfer XML si el escritor se abre en la memoria y devuelve el número de bytes si usamos URI.
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_flush() función -
<?php
//Opening a writer
$uri = "result.xml";
$writer = xmlwriter_open_uri($uri);
//Starting the document
xmlwriter_start_document($writer);
//Creating XML elements
xmlwriter_set_indent($writer, TRUE);
xmlwriter_set_indent_string($writer, " ");
//Starting an element
xmlwriter_start_element($writer, 'Tutorial');
//Starting a element tag
xmlwriter_start_element($writer, 'name');
//Adding text to the element
xmlwriter_text($writer, 'JavaFX');
xmlwriter_full_end_element($writer);
xmlwriter_start_element($writer, 'Author');
//Adding text to the element
xmlwriter_text($writer, 'Krishna');
xmlwriter_full_end_element($writer);
//Ending the element
xmlwriter_full_end_element($writer);
//Ending the document
xmlwriter_full_end_element($writer);
//Flushing the contents of the document
xmlwriter_flush($writer, TRUE);
?>
Esto generará el siguiente documento XML:
<?xml version="1.0"?>
<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);
//Starting the document
$writer->startDocument();
//Starting an element
$writer->startElement('Msg');
//Adding text to the element
$writer->text('Welcome to Tutorialspoint');
//Ending the element
$writer->fullEndElement();
//Ending the document
$writer->fullEndElement();
//Flushing the contents of the XMLWriter
$writer->flush(TRUE);
?>
Esto generará el siguiente documento XML:
<?xml version="1.0"?>
<Msg>Welcome to Tutorialspoint</Msg>