将XML数据插入SQL字段

时间:2015-10-23 07:45:43

标签: php mysql xml codeigniter xpath

我写了一个函数来插入<IBAN></IBAN>并从XML插入MySQL数据库。我无法弄清楚为什么,我无法将数据从那里插入MySQL。 这是我写的代码。

public function test2(){
        $xml = simplexml_load_file('C:\Users\Nihit\Desktop\test.xml') or die ("could not open xml file");
               // performing sql query

            // count xml nodes
        $node = $xml->xpath("//IBAN/text()");

        var_dump($node);
        $num = 0;

         $text = $xml->asXML();
         $sql = "INSERT INTO transfer_packet VALUES(null, null, 0, null, " . $node . " , null, '" . mysql_real_escape_string($text) . "', " . $num . ", 1, 0, NOW(), null);";

            $result = mysql_query($sql) or die(mysql_error());

            if (!$result){

                var_dump($result);
                $result = mysql_query("SHOW ERRORS;");
                var_dump($result);

                }else{

             echo 'SUCCESS';
             echo 'updating id...';

             $last_id = mysql_insert_id();


             $result = mysql_query("update transfer_packet set ORIG_ID = " . $last_id . " where ID = " . $last_id .";");
               }




    }

代码用codeigniter编写。

更新(收到错误)

Severity: Notice Message : Array to string conversion FIlename : controllers/xmlconverter.php Line Number :368 Unknown column 'Array' in field list' 

这是我使用的xml文件

fkl.fi/teemasivut/sepa/tekninen_dokumentaatio/Dokumentit/… 

当然,数据库不会使用新行进行更新。

1 个答案:

答案 0 :(得分:0)

对于this示例XML,您应该使用以下代码:

$xml        =   simplexml_load_file('https://www.fkl.fi/teemasivut/sepa/tekninen_dokumentaatio/Dokumentit/FI_camt_054_sample.xml.xml'); // get XML output

$xmlFile    =   file_get_contents('https://www.fkl.fi/teemasivut/sepa/tekninen_dokumentaatio/Dokumentit/FI_camt_054_sample.xml.xml'); // get XML output as text

$IBAN       =   $xml -> BkToCstmrDbtCdtNtfctn -> Ntfctn -> Acct -> Id -> IBAN; // get IBAN value
$BIC        =   $xml -> BkToCstmrDbtCdtNtfctn -> Ntfctn -> Acct -> Svcr -> FinInstnId -> BIC; // get BIC value

$transferDateTimestamp  =   strtotime($xml -> BkToCstmrDbtCdtNtfctn -> Ntfctn -> CreDtTm); // Get transfer date as timestamp for transferred_date column
$data = array
(
'IBAN'              => $IBAN,
'BIC'               => $BIC,
'INSERT_DT'         =>  time(),
'xml_file'          => $xmlFile,
'status'            =>  '1',
'transferred_date'  =>  $transferDateTimestamp
);
$this -> db -> insert('tableName', $data); // inserting a new row to our table

$id = $this -> db -> insert_id(); // get last inserted id

$uptArray   =   array('ORIG_ID' => $id);
$this -> db -> where('id', $id);
$this -> db -> update('tableName', $uptArray); // updating ORIG_ID column