PHP - função xmlwriter_flush ()
Definição e Uso
XML é uma linguagem de marcação para compartilhar os dados na web, XML é tanto para leitura humana quanto para máquina. A extensão XMLWriter possui internamente a API libxml xmlWriter e é usada para escrever / criar o conteúdo de um documento XML. Os documentos XML gerados por isso não são armazenados em cache e são apenas encaminhados.
o xmlwriter_flush() A função aceita um objeto da classe XMLWriter como parâmetro e libera o buffer atual.
Sintaxe
xmlwriter_flush($xmlwriter, $bool);
Parâmetros
Sr. Não | Parâmetro e Descrição |
---|---|
1 | writer(Mandatory) Este é um objeto da classe XMLWriter que representa o documento XML que você deseja modificar / criar. |
2 | bool(Optional) Este é um valor booleano que especifica se o buffer deve ser esvaziado ou não. |
Valores Retornados
Esta função retorna um buffer XML se o gravador for aberto na memória e retorna o número de bytes se usarmos URI.
Versão PHP
Esta função foi introduzida pela primeira vez no PHP Versão 5 e funciona em todas as versões posteriores.
Exemplo
O exemplo a seguir demonstra o uso do xmlwriter_flush() função -
<?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);
?>
Isso irá gerar o seguinte documento XML -
<?xml version="1.0"?>
<Tutorial>
<name>JavaFX</name>
<Author>Krishna</Author>
</Tutorial>
Exemplo
A seguir está o exemplo desta função no 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);
?>
Isso irá gerar o seguinte documento XML -
<?xml version="1.0"?>
<Msg>Welcome to Tutorialspoint</Msg>