Note that this function is buggy. You have to manually escape the $value argument with htmlspecialchars.
See: http://bugs.php.net/bug.php?id=31191
(PHP 5, PHP 7, PHP 8)
DOMElement::__construct — Cria um novo objeto DOMElement
$qualifiedName
, ?string $value
= null
, string $namespace
= "")Cria um novo objeto DOMElement. Este objeto é somente leitura. Pode ser anexado a um documento, mas nós adicionais não podem ser anexados a este nó até que o nó esteja associado a um documento. Para criar um nó gravável, use DOMDocument::createElement ou DOMDocument::createElementNS.
qualifiedName
O nome da tag do elemento. Quando também passando o namespaceURI, o nome do elemento pode ter um prefixo associado ao URI.
value
O valor do elemento.
namespace
Um URI de namespace para criar o elemento dentro de um namespace específico.
Exemplo #1 Criando um novo DOMElement
<?php
$dom = new DOMDocument('1.0', 'iso-8859-1');
$element = $dom->appendChild(new DOMElement('root'));
$element_ns = new DOMElement('pr:node1', 'thisvalue', 'http://xyz');
$element->appendChild($element_ns);
echo $dom->saveXML(); /* <?xml version="1.0" encoding="utf-8"?>
<root><pr:node1 xmlns:pr="http://xyz">thisvalue</pr:node1></root> */
?>
Note that this function is buggy. You have to manually escape the $value argument with htmlspecialchars.
See: http://bugs.php.net/bug.php?id=31191