PHP | Función XMLWriter endComment()

La función XMLWriter::endComment() es una función incorporada en PHP que se utiliza para finalizar un comentario que se inicia con la función XMLWriter::startComment() .

Sintaxis:

bool XMLWriter::endComment( 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::endComment() 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:

Ejemplo 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
$writer->text('This will not be visible.');
  
// End the comment
$writer->endComment();
  
// Add value to the element
$writer->text('GeeksforGeeks');
  
// End the element
$writer->endElement();
  
// End the document
$writer->endDocument();
?>

Producción:

GeeksforGeeks

Referencia: https://www.php.net/manual/en/function.xmlwriter-end-comment.php

Publicación traducida automáticamente

Artículo escrito por gurrrung y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *