PHP - Función xmlwriter_write_raw ()
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_write_raw() La función acepta un objeto de la clase XMLWriter y un valor de cadena que representa el contenido como parámetros y escribe un texto XML sin formato.
Sintaxis
xmlwriter_write_raw($xmlwriter, $content);
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 | content(Mandatory) Este es un valor de cadena para escribir. |
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_write_raw() función -
<?php
//Creating an XMLWriter
$writer = new XMLWriter();
$uri = "result.xml";
//Opening a writer
$writer = xmlwriter_open_uri($uri);
//Starting the document
xmlwriter_start_document($writer);
//Starting an element
xmlwriter_start_element($writer, 'Msg');
//Adding text to the element
xmlwriter_write_raw($writer, 'Welcome to Tutorialspoint');
//Ending the element
xmlwriter_end_element($writer);
//Ending the document
xmlwriter_end_document($writer);
?>
Esto generará el siguiente documento XML:
<?xml version="1.0"?>
<Msg>Welcome to Tutorialspoint</Msg>
Ejemplo
A continuación se muestra el ejemplo de esta función en estilo orientado a objetos:
<?php
//Creating an XMLWriter
$writer = new XMLWriter();
$uri = "result.xml";
//Opening a writer
$writer->openUri($uri);
//Starting the document
$writer->startDocument();
//Starting an element
$writer->startElement('Msg');
//Setting the attribute
$writer->writeAttribute('attr', 'test_value');
//Adding text to the element
$writer->writeRaw('Welcome to Tutorialspoint');
//Ending the element
$writer->endElement();
//Ending the document
$writer->endDocument();
?>
Esto generará el siguiente documento XML:
<?xml version="1.0"?>
<Msg>Welcome to Tutorialspoint</Msg>