我无法从php获取xml文件中的所有数据

时间:2012-04-11 12:06:34

标签: php xml-parsing

除了所有< Item>之外,我可以从xml获取数据。数据。下面的代码只获取最后一个的数据。我认为foreach会为每个人得到它,但似乎没有。

<magic5Out version="2.1.0">
<Report customerPK="Survey_2" locationPK="229" userId="2299" template="13600" formDate="2012-04-11T00:00:00" dateTimeStarted="2012-04-11T07:34:04" dateTimeMobileReleased="2012-04-11T07:37:03" currentStatus="5" reportGuid="b174d011-77bb-4882-b87e-a2c60bdf265d">
    <Results>
        <Item itemPK="SurveyTab_9">
            <q1 listEntry="1.8m" listEntryId="239107"/>
            <q1Comments text=""/>
            <q2 listEntry="Green" listEntryId="239113"/>
            <q2Comments text=""/>
            <item_comments text="test"/>
        </Item>
        <Item itemPK="SurveyTab_24">
            <q1 listEntry="2.2m" listEntryId="239108"/>
            <q1Comments text=""/>
            <q2 listEntry="Silver" listEntryId="239112"/>
            <q2Comments text=""/>
            <item_comments text=""/>
        </Item>
        <Item itemPK="SurveyTab_10">
            <q1 listEntry="3.0m" listEntryId="239110"/>
            <q1Comments text=""/>
            <q2 listEntry="White" listEntryId="239111"/>
            <q2Comments text=""/>
            <item_comments text="No feed"/>
        </Item>
        <Item itemPK="SurveyTab_23">
            <q1 listEntry="2.2m" listEntryId="239108"/>
            <q1Comments text=""/>
            <q2 listEntry="Green" listEntryId="239113"/>
            <q2Comments text=""/>
            <item_comments text=""/>
        </Item>
    <surveyorComments0 text="testing"/>
    <surveyorName text="NICK"/>
    <surveyorSig opFile="D:\Sites\WebApp_eden\Output\2100\XMLSurvey\Attachments\1cf582f9-776c-472e-b8ce-877a51fae5e1.png"/>
    </Results>
</Report>
</magic5Out>

这是我正在使用的php:

$xml = simplexml_load_file($xml_file); 
/* more code here that works OK */
foreach($xml->Report->Results->Item as $tab) {
    $tab_name = (string) $tab['itemPK'];
    $q1_result =  $tab->q1['listEntry'];
    $q2_result =  $tab->q2['listEntry'];  etc.
    $q1_comment =  escape_data($tab->q1Comments['text']);
    $q2_comment =  escape_data($tab->q2Comments['text']);
    $item_comment = escape_data($tab->item_comments['text']);
}

2 个答案:

答案 0 :(得分:1)

当你创建一个循环并定义一个变量时,在你的情况下,你的变量中的循环中的最后一个值。

您每次都会覆盖您的变量。

foreach($xml->Report->Results->Item as $tab) {
    $tab_name[] = (string) $tab['itemPK'];
    $q1_result[] =  $tab->q1['listEntry'];
    $q2_result[] =  $tab->q2['listEntry'];  etc.
    $q1_comment[] =  escape_data($tab->q1Comments['text']);
    $q2_comment[] =  escape_data($tab->q2Comments['text']);
    $item_comment[] = escape_data($tab->item_comments['text']);
}

尝试这样的事情。然后你有一个包含所有值的数组。

答案 1 :(得分:0)

代码中的其他地方肯定有一些东西搞砸了 - 我尝试了其他一些东西,并最终还原到我上面发布的php,这次工作。希望这只是我自己的时间浪费在这上面。