将Xml值存储为变量

时间:2014-04-14 00:06:03

标签: php sql

我有一个类似

的xml
<Row>
  <RowType>Header</RowType>
  <Cells>
    <Cell />
    <Cell>
      <Value>31 Jan 11</Value>
    </Cell>
  </Cells>
</Row>
<Row>
  <RowType>Section</RowType>
  <Title>Salary</Title>
  <Rows>
    <Row>
      <RowType>Row</RowType>
      <Cells>
        <Cell>
          <Value>Total</Value>          

继续

我需要将日期值31 Jan 11作为变量,以便稍后我可以将它用于我的sql插入查询。

有人可以帮助我如何将xml中的日期值转换为变量。

谢谢

2 个答案:

答案 0 :(得分:1)

如果您只需要检索xml文件的这个值:

$Row = new SimpleXMLElement($xmlstr_file);
echo $Row->Cells[0]->Cell[1]->value;

否则我建议您查看http://www.php.net/manual/fr/simplexml.examples-basic.php

答案 1 :(得分:0)

如果您只需要检索文件的这个值:

$Row = new SimpleXMLElement($xmlstr_file);
echo $Row->Cells[0]->Cell[1]->value;