Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Lendo um arquivo XML e armazenando dados no banco de dados mysql


Dê uma olhada em sequência de carga simplesXML ou arquivo de carga . Usando isso, você pode analisar o conteúdo XML e extrair a string. Por exemplo (dos manuais do 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);
?>

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

Deixe saber como vai.