PHP - Función xmlwriter_start_comment ()
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_start_comment() La función acepta un objeto de la clase XMLWriter e inicia una etiqueta de comentario.
Sintaxis
xmlwriter_start_comment($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_start_comment() función -
<?php
//Creating an XMLWriter
$writer = new XMLWriter();
//Opening a writer
$uri = "result.xml";
$writer = xmlwriter_open_uri($uri);
//Starting the document
xmlwriter_start_document($writer);
//Starting an element
xmlwriter_start_element($writer, 'Msg');
//Starting the comment
xmlwriter_start_comment($writer);
//Setting value to the comment
xmlwriter_text($writer, 'This is a sample comment');
//Ending the comment
xmlwriter_end_comment($writer);
//Adding text to the element
xmlwriter_text($writer, 'Welcome to Tutorialspoint');
//Starting an element
xmlwriter_end_element($writer);
//Ending the document
xmlwriter_end_document($writer);
?>
Esto generará el siguiente documento XML:
<?xml version="1.0"?>
<Msg><!--This is a sample comment-->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();
//Opening a writer
$uri = "result.xml";
$writer->openUri($uri);
//Starting the document
$writer->startDocument();
//Starting an element
$writer->startElement('Msg');
//Starting the comment
$writer->startComment();
//Setting value to the comment
$writer->text('This is a sample comment');
//Ending the comment
$writer->endComment();
//Adding text to the element
$writer->text('Welcome to Tutorialspoint');
//Ending the element
$writer->endElement();
//Ending the document
$writer->endDocument();
?>
Esto generará el siguiente documento XML:
<?xml version="1.0"?>
<Msg><!--This is a sample comment-->Welcome to Tutorialspoint</Msg>