PHP | Función DOMEntityReference __construct()

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

Sintaxis:

public DOMEntityReference::__construct( string $name )

Parámetros: esta función acepta un solo parámetro $nombre que contiene el nombre de la referencia de la entidad.

Los siguientes programas ilustran la función DOMEntityReference::__construct() en PHP:

Programa 1:

<?php
// Create a new DOMDocument
$dom = new DOMDocument();
  
// Add the node to the dom
$element = $dom->appendChild(new DOMElement('H1'));
    
// Add the DOM Entity Reference as a child
$entity = $element->appendChild(new DOMEntityReference('GeeksforGeeks'));
  
// Render the XML
echo $dom->saveXML();
?>

Producción:

Programa 2:

<?php
// Create a new DOMDocument
$dom = new DOMDocument();
  
// Add the node to the dom
$element = $dom->appendChild(new DOMElement('body'));
    
// Add the DOM Entity Reference as a child
$entity = $element->appendChild(new DOMEntityReference('GeeksforGeeks'));
  
// View the name of node
echo $entity->nodeName;
?>

Producción:

GeeksforGeeks

Referencia: https://www.php.net/manual/en/domentityreference.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 *