The DOMDocument::createElement() function is an inbuilt function in PHP which is used to create a new instance of class DOMElement.
Syntax:
php
php
DOMElement DOMDocument::createElement( string $name, string $value )Parameters: This function accepts two parameters as mentioned above and described below:
- $name: This parameter holds the tag name of the element.
- $value: This parameter holds the value of the element. The default value of this function creates an empty element. The value of element can be set later using DOMElement::$nodeValue.
<?php
// Create a new DOMDocument
$domDocument = new DOMDocument('1.0', 'iso-8859-1');
// Use createElement() function to add a new element node
$domElement = $domDocument->createElement('organization', 'GeeksforGeeks');
// Append element to the document
$domDocument->appendChild($domElement);
// Save XML file and display it
echo $domDocument->saveXML();
?>
Output:
Program 2:
<?xml version="1.0" encoding="iso-8859-1"?> <organization>GeeksforGeeks</organization>
<?php
// Create a new DOMDocument
$domDocument = new DOMDocument('1.0', 'iso-8859-1');
// Use createElement() function to add a new element node
$domElement1 = $domDocument->createElement('organization');
$domElement2 = $domDocument->createElement('name', 'GeeksforGeeks');
$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);
// Save XML file and display it
echo $domDocument->saveXML();
?>
Output:
Reference: https://www.php.net/manual/en/domdocument.createelement.php
<?xml version="1.0" encoding="iso-8859-1"?>
<organization>
<name>GeeksforGeeks</name>
<address>Noida</address>
<email>abc@geeksforgeeks.org</email>
</organization>