PHP | Función DOMDocument createComment()

La función DOMDocument::createComment() es una función incorporada en PHP que se usa para crear una nueva instancia de la clase createComment.

Sintaxis:

DOMComment DOMDocument::createComment( string $data )

Parámetros: esta función acepta un único parámetro $datos que contiene el contenido del Node de comentario.

Valor de retorno: esta función devuelve el nuevo objeto DOMComment en caso de éxito o FALSO en caso de error.

Los siguientes programas ilustran la función DOMDocument::createComment() en PHP:

Programa 1:

<?php
  
// Create a new DOMDocument
$domDocument = new DOMDocument('1.0', 'iso-8859-1');
  
// Use createComment() function to add a new comment node
$domComment = $domDocument->createComment('GeeksforGeeks');
  
// Append element to the document
$domDocument->appendChild($domComment);
  
// Save the XML file and display it
echo $domDocument->saveXML();
  
?>
Producción:

<?xml version="1.0" encoding="iso-8859-1"?>
<!--GeeksforGeeks-->

Programa 2:

<?php
  
// Create a new DOMDocument
$domDocument = new DOMDocument('1.0', 'iso-8859-1');
  
// Use createComment() function to add a new comment node
$domComment1 = $domDocument->createComment('Starting XML document file');
$domComment2 = $domDocument->createComment('Ending XML document file');
  
// 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($domComment1);
  
$domDocument->appendChild($domElement1);
$domElement1->appendChild($domElement2);
$domElement1->appendChild($domElement3);
$domElement1->appendChild($domElement4);
  
$domDocument->appendChild($domComment2);
  
// Save the XML file and display it
echo $domDocument->saveXML();
  
?>
Producción:

<?xml version="1.0" encoding="iso-8859-1"?>
<!--Starting XML document file-->
<organization>
    <name>GeeksforGeeks</name>
    <address>Noida</address>
    <email>abc@geeksforgeeks.org</email>
</organization>
<!--Ending XML document file-->

Referencia: https://www.php.net/manual/en/domdocument.createcomment.php

Publicación traducida automáticamente

Artículo escrito por jit_t y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *