sql >> Base de Datos >  >> RDS >> Mysql

Leer un archivo XML y almacenar datos en la base de datos mysql

Eche un vistazo a simpleXML load-string o load-file . Con esto, puede analizar el contenido XML y extraer la cadena. Por ej. (de manuales de 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);
?>

Esto generará:

SimpleXMLElement Object
(
  [title] => Forty What?
  [from] => Joe
  [to] => Jane
  [body] =>
   I know that's the answer -- but what's the question?
)

Deja saber cómo va.