La función DOMText::__construct() es una función incorporada en PHP que se usa para crear un nuevo objeto DOMText.
Sintaxis:
public DOMText::__construct( string $value )
Parámetros: esta función acepta un único parámetro $valor que contiene el texto.
Los programas dados a continuación ilustran la función DOMText::__construct() en PHP:
Programa 1:
<?php // Create the text Node $text = new DOMText('GeeksforGeeks'); // Get the Value echo $text->nodeValue; ?>
Producción:
GeeksforGeeks
Programa 2:
<?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(); ?>
Producción:
<?xml version="1.0"?> <h1>GeeksforGeeks</h1>
Referencia: https://www.php.net/manual/en/domtext.construct.php