La función XMLWriter::endDtd() es una función incorporada en PHP que se usa para terminar el DTD actual que se inicia usando la función XMLWriter::startDtd() . DTD significa Definición de tipo de documento, que define la estructura y los elementos y atributos legales de un documento XML. Los DTD no son visibles en una página web porque actúan como comentarios.
Sintaxis:
bool XMLWriter::endDtd( 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::endDtd() 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 the Dtd $writer->startDtd('my_dtd'); // End the Dtd $writer->endDtd(); // End the document $writer->endDocument(); ?>
Salida: Presione Ctrl+U para ver el XML
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 the Dtd $writer->startDtd('my_dtd_which_is_not_visible'); // End the Dtd $writer->endDtd(); // Write a text to document $writer->text('This is XMLWriter.'); // End the document $writer->endDocument(); ?>
Producción:
This is XMLWriter.
Referencia: https://www.php.net/manual/en/function.xmlwriter-end-dtd.php