Dai un'occhiata a stringa di caricamento o file di caricamento simpleXML . Usando questo puoi analizzare il contenuto XML ed estrarre la stringa. Per es. (dai manuali PHP)
<?php
$string = <<<XML
<?xml version='1.0'?>
<document>
<title>Forty What?</title>
<from>Joe</from>
<to>Jane</to>
<body>
I know that's the answer -- but what's the question?
</body>
</document>
XML;
$xml = simplexml_load_string($string);
var_dump($xml);
?>
Questo produrrà:
SimpleXMLElement Object
(
[title] => Forty What?
[from] => Joe
[to] => Jane
[body] =>
I know that's the answer -- but what's the question?
)
Facci sapere come va.