Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Lesen einer XML-Datei und Speichern von Daten in der MySQL-Datenbank

Sehen Sie sich simpleXML load-string oder load-file an . Damit können Sie den XML-Inhalt parsen und den String extrahieren. Für z.B. (aus PHP-Handbüchern)

<?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);
?>

Dies wird ausgeben:

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

Sag Bescheid, wie es läuft.