Saturday, November 22, 2025
HomeLanguagesPHP | DOMDocument normalizeDocument() Function

PHP | DOMDocument normalizeDocument() Function

The DOMDocument::normalizeDocument() function is an inbuilt function in PHP which is used to normalize the document. This function is used to convert the document into the normal form if you saved and then loaded the document.

Syntax:

void DOMDocument::normalizeDocument( void )

Parameters: This function does not accept any parameters.

Return Value: This function does not return any value.

Below programs illustrate the DOMDocument::normalizeDocument() function in PHP:

Program 1:




<?php
  
// Create a new document
$domDocument = new DOMDocument('1.0', 'iso-8859-1');
  
// Create an element
$domElement = $domDocument->createElement('organization', 'neveropen');
  
// Append element to the document
$domDocument->appendChild($domElement);
  
// Use normalizeDocument() function
// to normalize the document
$domDocument->normalizeDocument();
  
// Create the XML file and display it
echo $domDocument->saveXML();
  
?>


Output:

<?xml version="1.0" encoding="iso-8859-1"?>
<organization>neveropen</organization>

Program 2:




<?php
    
// Create a new document
$domDocument = new DOMDocument('1.0', 'iso-8859-1');
    
// Create an element
$domElement1 = $domDocument->createElement('organization');
$domElement2 = $domDocument->createElement('name', 'neveropen');
$domElement3 = $domDocument->createElement('address', 'Noida');
$domElement4 = $domDocument->createElement('email', 'abc@geeksforgeeks.org');
    
// Append element to the document
$domDocument->appendChild($domElement1);
$domElement1->appendChild($domElement2);
$domElement1->appendChild($domElement3);
$domElement1->appendChild($domElement4);
    
// Use normalizeDocument() function
// to normalize the document 
$domDocument->normalizeDocument();
   
// Create the XML file and display it
echo $domDocument->saveXML();
    
?>


Output:

<?xml version="1.0" encoding="iso-8859-1"?>
<organization>
    <name>neveropen</name>
    <address>Noida</address>
    <email>abc@geeksforgeeks.org</email>
</organization>

Reference: https://www.php.net/manual/en/domdocument.normalizedocument.php

RELATED ARTICLES

Most Popular

Dominic
32407 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6784 POSTS0 COMMENTS
Nicole Veronica
11931 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11999 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7168 POSTS0 COMMENTS
Thapelo Manthata
6863 POSTS0 COMMENTS
Umr Jansen
6848 POSTS0 COMMENTS