Descrizione
object
dom_import_simplexml ( object node )
Questa funzione prende il nodo node
della classe SimpleXML
e lo converte in un nodo DOMElement. Questo nuovo oggetto può
essere utilizzato come nodo DOMElement nativo.
Se vi sono errori la funzione restituisce FALSE.
Esempio 1. Importare SimpleXML nel DOM con dom_import_simplexml
<?php $sxe = simplexml_load_string('<books><book><title>blah</title></book></books>'); if ($sxe === false) { echo 'Error while parsing the document'; exit; }
$dom_sxe = dom_import_simplexml($sxe); if (!$dom_sxe) { echo 'Error while converting XML'; exit; }
$dom = new domdocument("1.0"); $dom_sxe = $dom->importnode($dom_sxe, true); $dom_sxe = $dom->appendchild($dom_sxe);
echo $dom->savexml(); ?>
|
|
Vedere anche
simplexml_import_dom().