La función XMLWriter::endDocument() es una función incorporada en PHP que se utiliza para finalizar el documento actual.
Sintaxis:
bool XMLWriter::endDocument( 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::endDocument() 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'); // Add value to the element $writer->text('GeeksforGeeks'); // End the element $writer->endElement(); // End the document $writer->endDocument(); ?>
Producción:
<?xml version="1.0" encoding="UTF-8"?> <div>GeeksforGeeks</div>
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 h1 element $writer->startElement('h1'); // Start the style attribute $writer->startAttribute('style'); // Add value to the attribute $writer->text('color:green;font-size:80px;'); // End the attribute $writer->endAttribute(); // Add value to the element $writer->text('GeeksforGeeks'); // End the element $writer->endElement(); // End the document $writer->endDocument(); ?>
Producción:
<?xml version="1.0" encoding="UTF-8"?> <h1 style="color:green;font-size:80px;">GeeksforGeeks</h1>
Referencia: https://www.php.net/manual/en/function.xmlwriter-end-document.php