Friday, October 10, 2025
HomeLanguagesPHP | XMLWriter endElement() Function

PHP | XMLWriter endElement() Function

The XMLWriter::endElement() function is an inbuilt function in PHP which is used to end current element which is started using XMLWriter::startElement() function.

Syntax:

bool XMLWriter::endElement( void )

Parameters:This function doesn’t accept any parameter.

Return Value: This function returns TRUE on success and FALSE on failure.

Below examples illustrate the XMLWriter::endElement() function in PHP:

Example 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('neveropen in bold.');
  
// End the element
$writer->endElement();
  
// End the document
$writer->endDocument();
?>


Output:

neveropen in bold.

Example 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 neveropen');
  
// End the element
$writer->endElement();
  
// Start a element
$writer->startElement('mark');
  
// Add value to the element
$writer->text('Marked neveropen');
  
// End the element
$writer->endElement();
  
// End the document
$writer->endDocument();
?>


Output:

Reference: https://www.php.net/manual/en/function.xmlwriter-end-element.php

RELATED ARTICLES

Most Popular

Dominic
32350 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6718 POSTS0 COMMENTS
Nicole Veronica
11880 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11941 POSTS0 COMMENTS
Shaida Kate Naidoo
6838 POSTS0 COMMENTS
Ted Musemwa
7100 POSTS0 COMMENTS
Thapelo Manthata
6794 POSTS0 COMMENTS
Umr Jansen
6794 POSTS0 COMMENTS