Goldenweb.it homepage

ANNUNCI | DIRECTORY | FONTS | ICONE | NEWSGROUPS | TOP25 | WALLPAPERS

English version  

Mc Labels | Online Fashion E-Boutique
Nella nostra concept boutique si possono trovare i migliori brands già affermati del panorama nazionale e internazionale, come anche nuovi designers, specialmente coloro che lavorano con il made in Italy.
Crazy Fashion Online Shop Pluri Marche Vestiario, Vestiti
Crazy Fashion Online Shop Pluri Marche Vestiario: - accessori, abbigliamento, articoli da regalo, band merchandise, biancheria, giochi, quadri e posters, peluche/pupazzi, io? Ion!, figure, cuscini, articoli per la casa, cartoleria, Vendita vestiti online

GoldenWeb.it Directory "Premium" Links - Il tuo link qui...



DOMDocument->loadXML

(no version information, might be only in CVS)

DOMDocument->loadXML --  Load XML from a string.

Description

mixed DOMDocument->loadXML ( string source)

The function parses the XML contained in the string source. This function may also be called statically to load and create a DOMDocument object. The static invocation may be used when no DOMDocument properties need to be set prior to loading.

Esempio 1. Creating a Document

<?php
$doc
= DOMDocument::loadXML("<root><node/></root>");
print
$doc->saveXML();

$doc = new DOMDocument();
$doc->loadXML("<root><node/></root>");
print
$doc->saveXML();
?>

See also DOMDocument->load(), DOMDocument->save() and DOMDocument->saveXML().