La función XMLWriter::endDtdEntity() es una función incorporada en PHP que se utiliza para finalizar la entidad DTD actual. DTD significa Definición de tipo de documento, que define la estructura y los elementos y atributos legales de un documento XML. DTD no es visible en una página web porque actúan como comentarios. Las entidades se utilizan para definir accesos directos a caracteres especiales.
Sintaxis:
bool XMLWriter::endDtdEntity( 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::endDtdEntity() 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 Entity $writer->startDtdEntity('entity', true); // End the Dtd Entity $writer->endDtdEntity(); // End the document $writer->endDocument(); ?>
Producción:
<?xml version="1.0" encoding="UTF-8"?> <!ENTITY % entity>
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 Entity which is // not going to be visible $writer->startDtdEntity('entity', true); // End the Dtd Entity $writer->endDtdEntity(); // Start a h1 element $writer->startElement('h1'); // Add a style attribute $writer->writeAttribute('style', 'color:blue;font-size:100;'); // Add text to the element $writer->text('GeeksforGeeks'); // End the element $writer->endElement(); // End the document $writer->endDocument(); ?>
Producción:
Referencia: https://www.php.net/manual/en/function.xmlwriter-end-dtd-entity.php