Open In App

PHP | DOMText __construct() Function

Last Updated : 13 Mar, 2020
Comments
Improve
Suggest changes
Like Article
Like
Report
The DOMText::__construct() function is an inbuilt function in PHP which is used to create a new DOMText object. Syntax:
public DOMText::__construct( string $value )
Parameters: This function accepts a single parameter $value which holds the text. Below given programs illustrate the DOMText::__construct() function in PHP: Program 1: php
<?php

// Create the text Node
$text = new DOMText('GeeksforGeeks');

// Get the Value
echo $text->nodeValue;
?>
Output:
GeeksforGeeks
Program 2: php
<?php
// Create a new DOMDocument instance
$document = new DOMDocument();

// Create a h1 element
$element = $document->appendChild(new DOMElement('h1'));

// Create the text Node
$text1 = new DOMText('GeeksforGeeks');

// Append the node
$element->appendChild($text1);

// Render the output
echo $document->saveXML();
?>
Output:
<?xml version="1.0"?>
<h1>GeeksforGeeks</h1>
Reference: https://www.php.net/manual/en/domtext.construct.php

Next Article

Similar Reads