PHP - função xmlwriter_open_memory ()
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_open_memory() função é usada para criar um novo xmlwriter usando a memória.
Sintaxe
xmlwriter_open_memory();
Parâmetros
Esta função não aceita nenhum parâmetro.
Valores Retornados
Esta função retorna um objeto XMLWriter em caso de sucesso e um valor booleano que é FALSE em caso de falha.
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_open_memory() função -
<?php
//Opening a writer
$writer = xmlwriter_open_memory();
//Starting the document
xmlwriter_start_document($writer);
//Starting an element
xmlwriter_start_element($writer, 'Msg');
//Adding text to the element
xmlwriter_text($writer, 'Welcome to Tutorialspoint');
//Ending the element
xmlwriter_end_element($writer);
//Ending the document
xmlwriter_end_document($writer);
$res = xmlwriter_output_memory($writer);
print($res);
?>
Isso irá gerar o seguinte documento XML -
<?xml version="1.0"?>
<Msg>Welcome to Tutorialspoint</Msg>
Exemplo
A seguir está o exemplo desta função no estilo orientado a objetos -
<?php
//Creating an XMLWriter
$writer = new XMLWriter();
//$uri = "result.xml";
//Opening a writer
$writer->openMemory();
//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->endElement();
//Ending the document
$writer->endDocument();
$res = $writer->outputMemory();
print($res);
?>
Isso irá gerar o seguinte documento XML -
<?xml version="1.0"?>
<Msg>Welcome to Tutorialspoint</Msg>