PHP 8.4.2 Released!

Dom\import_simplexml

(PHP 8 >= 8.4.0)

Dom\import_simplexml Gets a Dom\Attr or Dom\Element object from a SimpleXMLElement object

Descrição

Dom\import_simplexml(object $node): Dom\Attr|Dom\Element

This function takes the given attribute or element node (a SimpleXMLElement instance) and creates a Dom\Attr or Dom\Element node, respectively. The new Dom\Node refers to the same underlying XML node as the SimpleXMLElement.

Parâmetros

node

O nó de atributo ou de elemento a importar (uma instância de SimpleXMLElement).

Valor Retornado

The Dom\Attr or Dom\Element.

Exemplos

Exemplo #1 Import SimpleXML into DOM and modify SimpleXML through DOM

Error handling omitted for brevity.

<?php

$sxe
= simplexml_load_string('<books><book><title>blah</title></book></books>');
$elt = Dom\import_simplexml($sxe);
$elt->setAttribute("foo", "bar");
echo
$sxe->asXML();

?>

O exemplo acima produzirá:

<?xml version="1.0"?>
<books foo="bar"><book><title>blah</title></book></books>

Veja Também

adicione uma nota

Notas Enviadas por Usuários (em inglês)

Não há notas de usuários para esta página.
To Top