PHP | Función DOMImplementación __construct()

La función DOMImplementation::__construct() es una función incorporada en PHP que se usa para crear un nuevo objeto DOMImplementation.

Sintaxis:

 DOMImplementation::__construct( void )

Parámetros: Esta función no acepta ningún parámetro.

Los siguientes ejemplos ilustran la función DOMImplementation::__construct() en PHP:

Ejemplo 1:

<?php
  
// Create a DOMImplementation instance
$documentImplementation = new DOMImplementation();
  
// Create a document
$document = $documentImplementation->createDocument(null, 'html');
  
// Get the document element
$html = $document->documentElement;
  
// Create few element
$heading = $document->createElement('h1');
$text = $document->createTextNode('GeeksforGeeks');
  
// Append the children
$heading->appendChild($text);
$html->appendChild($heading);
  
// Render the XML
echo $document->saveXML();
?>

Salida:

Ejemplo 2:

<?php
// Create a DOMImplementation instance
$documentImplementation = new DOMImplementation();
  
// Create a document
$document = $documentImplementation->createDocument(null, 'html');
  
// Get the document element
$html = $document->documentElement;
  
// Create few element
$head = $document->createElement('head');
$title = $document->createElement('title');
$text = $document->createTextNode('GeeksforGeeks');
$body = $document->createElement('body');
  
// Append the children
$title->appendChild($text);
$head->appendChild($title);
$html->appendChild($head);
$html->appendChild($body);
  
// Render the XML
echo $document->saveXML();
?>

Salida:

Referencia: https://www.php.net/manual/en/domimplementation.construct.php

Publicación traducida automáticamente

Artículo escrito por gurrrung 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 *