La función DOMComment::__construct() es una función incorporada en PHP que crea un nuevo objeto DOMComment. Este objeto es de solo lectura y se puede agregar a un documento
Sintaxis:
public DOMComment::__construct( string $value)
Parámetros: esta función acepta un solo parámetro $valor que contiene el comentario.
Los programas dados a continuación ilustran la función DOMComment::__construct() en PHP:
Programa 1 (Comentario simple):
<?php // Create a new DOM Document $dom = new DOMDocument('1.0', 'iso-8859-1'); // Create a h1 element $element = $dom->appendChild(new DOMElement('h1')); // Create a DOMComment $comment = $element->appendChild( new DOMComment('This line is a comment')); echo $dom->saveXML(); ?>
Producción:
<?xml version="1.0" encoding="iso-8859-1"?> <h1><!--This line is a comment--></h1>
Programa 2 (Usando comentarios con elementos):
<?php // Create a new DOM Document $dom = new DOMDocument('1.0', 'iso-8859-1'); // Create a h1 element $element = $dom->appendChild(new DOMElement('h1')); // Create a DOMCdataSection $comment = $element->appendChild(new DOMComment( 'This line is a comment about content')); // Create a div element $element = $element->appendChild(new DOMElement( 'div', 'This is the actual content')); echo $dom->saveXML(); ?>
Producción:
<?xml version="1.0" encoding="iso-8859-1"?> <h1><!--This line is a comment about content--> <div>This is the actual content</div></h1>
Referencia: https://www.php.net/manual/en/domcomment.construct.php