La función XMLWriter::startComment() es una función incorporada en PHP que se utiliza para iniciar comentarios. Este comentario más tarde debe cerrarse usando la función XMLWriter::endComment() .
Sintaxis:
bool XMLWriter::startComment( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor de retorno: esta función devuelve VERDADERO en caso de éxito o FALSO en caso de error.
Los siguientes ejemplos ilustran la función XMLWriter::startComment() en PHP:
Ejemplo 1:
<?php // Create a new XMLWriter instance $writer = new XMLWriter(); // Create the output stream as PHP $writer->openURI('php://output'); // Start the document $writer->startDocument('1.0', 'UTF-8'); // Start a element $writer->startElement('div'); // Start a comment $writer->startComment(); // Add text to the comment $writer->text('This is a comment'); // End the comment $writer->endComment(); // End the element $writer->endElement(); // End the document $writer->endDocument(); ?>
Producción:
<?xml version="1.0" encoding="UTF-8"?> <div><!--This is a comment--></div>
Programa 2:
<?php // Create a new XMLWriter instance $writer = new XMLWriter(); // Create the output stream as PHP $writer->openURI('php://output'); // Start the document $writer->startDocument('1.0', 'UTF-8'); // Start a element $writer->startElement('div'); // Start a comment $writer->startComment(); // Add text to the comment which will not be visible $writer->text('This will not be visible.'); // End the comment $writer->endComment(); // Add value to the element $writer->text('This is the visible text.'); // End the element $writer->endElement(); // End the document $writer->endDocument(); ?>
Producción:
<?xml version="1.0" encoding="UTF-8"?> <div><!--This will not be visible.--> This is the visible text.</div>
Referencia: https://www.php.net/manual/en/function.xmlwriter-start-comment.php