PHP | Función XMLWriter endElement()

La función XMLWriter::endElement() es una función incorporada en PHP que se usa para finalizar el elemento actual que se inicia usando la función XMLWriter::startElement() .

Sintaxis:

bool XMLWriter::endElement( void )

Parámetros: Esta función no acepta ningún parámetro.

Valor de retorno: esta función devuelve VERDADERO en caso de éxito y FALSO en caso de error.

Los siguientes ejemplos ilustran la función XMLWriter::endElement() 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('strong');
  
// Add value to the element
$writer->text('GeeksforGeeks in bold.');
  
// End the element
$writer->endElement();
  
// End the document
$writer->endDocument();
?>

Producción:

GeeksforGeeks in bold.

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');
  
// Write the attribute
$writer->writeAttribute('style', 'color:red');
  
// Add value to the element
$writer->text('Red GeeksforGeeks');
  
// End the element
$writer->endElement();
  
// Start a element
$writer->startElement('mark');
  
// Add value to the element
$writer->text('Marked GeeksforGeeks');
  
// End the element
$writer->endElement();
  
// End the document
$writer->endDocument();
?>

Producción:

Referencia: https://www.php.net/manual/en/function.xmlwriter-end-element.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 *